想用Java程序打开个一个IE页面(post方式)
想用Java程序打开个一个IE页面,打开的时候需要用post的方式。比如,程序中直接填充好用户名、密码,然后利用post方式打开。主要原因是,需要给远程服务传递一个令牌,...
想用Java程序打开个一个IE页面,打开的时候需要用post的方式。
比如,程序中直接填充好用户名、密码,然后利用post方式打开。
主要原因是,需要给远程服务传递一个令牌,如果get方式比较不安全。
我需要的方式是,比如main函数直接打开一个页面,比如我打开百度网站,直接将查询内容以post方式传递,打开IE就能看到一个查询页面。 展开
比如,程序中直接填充好用户名、密码,然后利用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);
}
/**
* 向指定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页面中隐藏域的值即可。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询