public class Test{
public static void main(String[] args){
String url="ftp://dvdmaker9966org:1981/bdig/123/dfshio/sfjgo/";
//首先去掉开头部分如:ftp://,>
1.编写useSourceViewer 类的基本框架,该类仅包括无返回值的main ()方法,该方法从参数中获取URL,通过输入缓冲和输出缓冲将该URL 原码输出。
2.编写useSourceViewer 类,代码如下:
import javanet;
import javaio;
public class useSourceViewer
{
public static void main (String[] args)
{
if (argslength > 0)
{
try
{
//读入URL
URL u = new URL(args[0]);
InputStream in = uopenStream( );
// 为增加性能存储输入流
in = new BufferedInputStream(in);
// 将输入流连接到阅读器
Reader r = new InputStreamReader(in);
int c;
while ((c = rread( )) != -1)
{
Systemoutprint((char) c);
}
Object o = ugetContent( );
Systemoutprintln("I got a " + ogetClass()getName( ));
}
catch (MalformedURLException e)
{
Systemerrprintln(args[0] + " is not a parseable URL");
}
catch (IOException e)
{
Systemerrprintln(e);
}
} // end if
} // end main
} // end SourceViewer}
以上就是关于java 从一个URL中提取特定子字符串保存全部的内容,包括:java 从一个URL中提取特定子字符串保存、使用java通过url获得目标主机的文件,代码如下,但是无法获得该url下的文件,求各位大牛指点、Java访问指定URL并获取网页源代码等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)