你应该是新手,还不明白概念,所以在网上找些视频教程看吧,搜索j2ee或者jsp的教程,jsp就是用java程序动态生成html页面,浏览器不能解析java代码,所以tomcat这种服务器负责解析,生成最终的htmlURL aurl = new URL(url);
BufferedReader br = new BufferedReader(new InputStreamReader(aurl
openStream()));
FileWriter fw = new FileWriter("d:/ahtml");
String line = "";
while (line != null)
{
line = brreadLine();
fwwrite(line);
}
fwflush();
fwclose();将以下代码保存为 Testjava 即可运行(界面挫了点,不过核心功能都有,你可以自己拿回去改改界面就可以了)
package com;
import javaxswing;
import javaawtBorderLayout;
import javaawteventActionListener;
import javaawteventActionEvent;
public class Test extends JFrame{
public static void main(String args[]){
new Test();
}
JTextField ieField;
JButton button;
public Test(){
super("单击按钮打开一个网页");
ieField = new JTextField(">
ctrl+shift+f(默认)
可以找在配置里面找到格式化模板,在keys里面设置快捷键
在windows->preferences中搜索templates
在windows->preferences中搜索keys
如果是程序实现,里面好像有个标准html流输出的实现,具体忘记了,自己找找。。。
public static String do_post(String url, List<NameValuePair> name_value_pair) throws IOException {
String body = "{}";
Default>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)