这也需要解释,readLine()是中断式的呗,每次运行到这一行都要读取到下一行之后才会继续后面的程序
站在用户的角度思考问题,与客户深入沟通,找到凌云网站设计与凌云网站推广的解决方案,凭借多年的经验,让设计与互联网技术结合,创造个性化、用户体验好的作品,建站类型包括:成都网站设计、网站制作、企业官网、英文网站、手机端网站、网站推广、域名申请、虚拟空间、企业邮箱。业务覆盖凌云地区。
readLine是中断式的你没有办法解决,再说也不是你的问题,是对方服务器或者是网络的问题,我们能做的只是设置一个timeout,时间过了,提示读取失败,可以试试apache的HttpClient
传入一个url,返回源代码; public static String getHTML(String url){// 获取指定URL的网页,返回网页内容的字符串,然后将此字符串存到文件即可 try { URL newUrl = new URL(url); URLConnection connect = newUrl.openConnection(); connect.setRequestProperty("User-Agent","Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)"); DataInputStream dis = new DataInputStream(connect.getInputStream()); BufferedReader in = new BufferedReader(new InputStreamReader(dis,"UTF-8")); String html = ""; String readLine = null; while((readLine = in.readLine()) != null) { html = html + readLine; } in.close(); return html; }catch (MalformedURLException me){ System.out.println("MalformedURLException" + me); }catch (IOException ioe){ System.out.println("ioeException" + ioe); } return null; }
源代码默认是打不开的,可以使用反编译工具,进行逆向解析才能看到源代码。
eclipse这个开发工具,默认有反编译的插件,在查看的类,按住ctrl点击鼠标左键即可查看源代码。
import java.io.*;
public class FileInputStreamTest{
public static void main(String []args){
File file=new File("word.txt");//这是文件名,如果你是后缀为Java的文件会读取运行这个Java编程
try{
FileInputStream fs=new FileInputStream(file);
//DateInputStream fo=new DateInputStream(fs);
System.out.println(fs.read());
}catch(Exception e)
{e.printStackTrace();}
}
}
File f =new File("地址");
FileInputStream in = new FileInputStream(file);
Scanner reader =new Scanner(in);
//这是属于util包里的 比较好用 也可以不用 直接用FileInputStream 读取
while(reader.haiNextLine()){
String str = reader.nextLine();
]
先用程序读取文件 如果碰到// 就输出当前行 如果是/* 就以*/为结束条件 输出中间内容 反正是java的注释 你都判断下 最好将java源文件另存为txt文件