当前位置: 技术问答>java相关
applet能不能产生Get和Post请求?
来源: 互联网 发布时间:2017-04-16
本文导语: applet怎样产生GET和POST请求? | this.getAppletContext().showDocument("javascript:top.location.href='/tech-qa-java/url/name/value.html';"); 这样可以模拟产生get请求 如果是post可以先在页面定义一个html的form表单,name=form1,method=post...
applet怎样产生GET和POST请求?
|
this.getAppletContext().showDocument("javascript:top.location.href='/tech-qa-java/url/name/value.html';");
这样可以模拟产生get请求
如果是post可以先在页面定义一个html的form表单,name=form1,method=post,然后
this.getAppletContext().showDocument("javascript:document.form1.submit();");
这样可以模拟产生get请求
如果是post可以先在页面定义一个html的form表单,name=form1,method=post,然后
this.getAppletContext().showDocument("javascript:document.form1.submit();");
|
使用Socket类,直接发送就可以了
|
Get 和Post是http的协议中的请求,请求这个资源的时候不就自动Get了..
|
怎么样产生?你想知道怎么样产生还是如何来产生呢?
|
建议使用applet和servlet的隧道通讯,可以实现get、post请求!