我想要做的是创建一个jsp页面来调用我的Python代码。我试图在jsp中将我的Python代码作为系统函数调用。我创建这个页面是为了从另一个jsp页面对这个页面进行跨域调用。
有人能告诉我如何对Python代码进行系统调用吗?我运行以下命令,以便在终端中执行Python代码:
root@user:/folder # python p111.py
我尝试了以下代码
<HTML>
<BODY>
Hello! The time is now
<script>
Process qq=Runtime.exec(new String[] { "./dsap
我想用facebook-sdk在我的页面上发布
我有权限来管理我的页面,但是当我发布
fb_response = graph.put_wall_post('python put wall post',{},FACEBOOK_PAGE_ID)
返回值
Something went wrong: OAuthException (#200) The user hasn't authorized the application to perform this action
我遇到了一个问题,我试图让Python中的一个线程在后台休眠特定的时间。不过,这需要在程序中完成,而不是在命令行级别,因为有数据从Python程序传递到PHP。
import os
from threading import Thread
class getPID(Thread):
def run(self):
print os.getpid()
class waitToKill(Thread):
def run(self):
time.sleep(25) #This is the sleep that needs to be done in
我有一个wsgi python-2 web服务器,我希望在按下按钮后,在服务器端执行一些代码,浏览器页面将关闭。 目前,post将浏览器选项卡重定向到主机名/foo页面,我不希望这样做,而只是接收post并在客户端关闭页面。 这个页面是一个遗留的页面,代码越少越好(它已经从头开始修改,但为了兼容性问题,我必须让它尽可能简单)。 因此,例如,执行流程将如下所示: user clicks on "foo" button -> a post arrives to the web server -> the server does something on its sid