想用Java程序打开个一个IE页面(post方式)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了想用Java程序打开个一个IE页面(post方式)相关的知识,希望对你有一定的参考价值。

想用Java程序打开个一个IE页面,打开的时候需要用post的方式。
比如,程序中直接填充好用户名、密码,然后利用post方式打开。
主要原因是,需要给远程服务传递一个令牌,如果get方式比较不安全。
我需要的方式是,比如main函数直接打开一个页面,比如我打开百度网站,直接将查询内容以post方式传递,打开IE就能看到一个查询页面。

你的意思是想某个JSP提交一个POST请求吗?如果是的话那就简单了。给你段代码参考下。望采纳.
/**
* 向指定URL发送POST方法的请求
* @param url 发送请求的URL
* @param param 请求参数,请求参数应该是name1=value1&name2=value2的形式。
* @return URL所代表远程资源的响应即HTML
* @throws IOException
*/
private static String sendPost(String url, String param) throws IOException
PrintWriter out = null;
BufferedReader in = null;
String result = "";
try
URL realUrl = new URL(url);
// 打开和URL之间的连接
URLConnection conn = realUrl.openConnection();
// 设置通用的请求属性
conn.setRequestProperty("accept", "*/*");
conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
// 发送POST请求必须设置如下两行
conn.setDoOutput(true);
conn.setDoInput(true);
// 获取URLConnection对象对应的输出流
out = new PrintWriter(conn.getOutputStream());
// 发送请求参数
out.print(param);
// flush输出流的缓冲
out.flush();
// 定义BufferedReader输入流来读取URL的响应
in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = in.readLine()) != null)
result += "\n" + line;

catch (IOException e)
throw e;

// 使用finally块来关闭输出流、输入流
finally
try
if (out != null)
out.close();

if (in != null)
in.close();

catch (IOException ex)
ex.printStackTrace();


return result;


=====调用很简单======

String html;
try
html = this.sendPost("http:// localhost:8080/index", "username=qiyi&password=123123" );
catch (IOException e1)
// TODO Auto-generated catch block
throw new RuntimeException(e1);
追问

谢谢~
不过有点不一样,我的环境可能是基于一个main函数,比如main函数打开一个IE,直接就post方式发送数据。

追答

那就简单了。给你个思路,
1。你写一个html页面在该页面加载成功后自动向指定的url提交post请求,
例如:submitReuqest.html ,保存在C盘根目录,页面代码如下:

document.getElementById("f").submit()

2. 启动tomcat ,然后在main函数中加入
Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\iexplore.exe c:\\submitReuqest.html ");
你的要求就满足了,加入令牌是动态的。你可以用main函数加入代码修改HTML页面中隐藏域的值即可。

参考技术A 在servlet里边的dopost方法里写相应的内容 在前台页面的form 标签里设置 method="post" 这样就是调用的post的方式

以上是关于想用Java程序打开个一个IE页面(post方式)的主要内容,如果未能解决你的问题,请参考以下文章

post或get方式提交数据数量及长度有限制吗?

在父窗体中用showModalDialog方式打开一个页面,并在页面中删除一条记录,成功后刷新本页面,再关闭本页面

想用JAVA做个固定访问某网站的小程序,我想知道如何判断页面已经加载完毕或刷新完了。

怎么在html中运行exe程序

js或jquery里如何用post方式跳转页面?

IsPostBack