扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
Java语言是Internet上最热门的编程语言,本文针对Java的网络功能,对Java从网络上获取图象、声音、HTML文档及文本文件等编程方法作了初步的介绍,同时介绍了动态获取网络上资源的方法作了介绍。文中提供了大量简明易懂的实例。
关键词:Java;Internet;网络 Java语言是Internet上新兴的编程语言,对Java的特性以及基本的编程方法已有很多文章作过介绍。但是,广大Java爱好者更希望了解Java更深一步的编程方法,本文就Java的网络功能及其编程方法 作一初步的介绍。 为了方便初次接触Java的读者,本文先就Java编程的一些常识作简单介绍。 二、Java网络功能及获取网络上资源的一般步骤 import java.applet.*; import java.awt.*; public class imag0 extends Applet{ Image image; public void init() { image=getImage(getDocumentBase(),"test.gif"); } public void paint(Graphics g) { g.drawImage(image, 0, 0,this); } } 如果想从网络上其他结点获取图象,关键是创建对应于网络上其他结点的Image类型的对象,一旦获得Image类型的对象获得了,便可以对其进行任何可能的图象操作。 Java提供了如下方法可以创建对应于其他结点的图象: getImage(new URL(字符串)) 其使用格式可有两种: Image image; try { image = getImage(new URL(url)); } catch(Exception e){ System.out.println("Can´t open the URL "); } Image image; try { imgur=new URL("结点URL "); } catch (MalformedURLException e) { System.out.println("Can´t open the URL "); } image=getImage(imgur); 获取URL对象 } catch (MalformedURLException e) { 出错提示 } 中。 例如要调用http://www.shu.edu.cn/~xyx/img/shnet.jpg结点的图象,第一种格式完整的程序如下: ●程序2 import java.applet.*; import java.net.*; import java.awt.*; public class imag extends Applet{ Image image; public void init() { String url = "http://www.shu.edu.cn/~xyx/img/shnet.jpg"; try { image = getImage(new URL(url)); } catch(Exception e){} } g.drawImage(image, 0, 0,this); } } ●程序3 import java.applet.*; import java.net.*; import java.awt.*; public class imag2 extends Applet{ Image image; URL imgur=null; public void init() { try { imgur=new URL("http://www.shu.edu.cn/~xyx/img/shnet.jpg"); } catch (MalformedURLException e) { } image=getImage(imgur); } public void paint(Graphics g) { g.drawImage(image, 0, 0,this); } } < html > < head > < title >Example < /title > < /head > < center > < applet code=imag.class width=550 height=250 > < /applet > < /html > 前者的使用格式是: try { play(new URL(Audur)); } catch(Exception e){} try { play(new URL(Audur),声音文件名); } catch(Exception e){} 后者使用的格式是: String Audur = "结点URL"; AudioClip loopClip; try { loopClip = getAudioClip(new URL(Audur)); } catch(Exception e){ System.out.println("Can´t open the URL "); } AudioClip loopClip; try { loopClip = getAudioClip(new URL(Audur) ,声音文件名); } catch(Exception e){ System.out.println("Can´t open the URL "); } URL Audur =null; try { Audur=new URL("结点URL "); } catch(Exception e){ System.out.println("Can´t open the URL "); } play(Audur); 下面对前述四种从网络上获取并播放声音文件的格式各举一简单的例子, 以作编程时参考: ●程序4 格式一 import java.applet.*; import java.awt.*; import java.net.*; public class sound1 extends Applet public void paint(Graphics g) { String Audur = "http://www.shu.edu.cn/~xyx/java/Animator/audio/bark.au"; try { play(new URL(Audur)); } catch(Exception e){} } } import java.applet.*; import java.awt.*; import java.net.*; public class sound2 extends Applet { AudioClip loopClip; public void paint(Graphics g) { String Audur = "http://www.shu.edu.cn/~xyx/java/Animator/audio/"; try { play(new URL(Audur),"bark.au"); } catch(Exception e){} } } import java.applet.*; import java.awt.*; import java.net.*; public class sound extends Applet{ AudioClip loopClip; public void init() { String Audur = "http://www.shu.edu.cn/~xyx/java/Animator/audio/bark.au"; try { loopClip = getAudioClip(new URL(Audur)); } catch(Exception e){} } loopClip.loop(); } } import java.applet.*; import java.awt.*; import java.net.*; public class sound0 extends Applet{ AudioClip loopClip; URL auur; public void init() { try { auur=new URL("http://www.shu.edu.cn/~xyx/java/Animator/audio/"); } catch (MalformedURLException e) { System.out.println("Can´t open the URL "); } loopClip = getAudioClip(auur,"bark.au"); loopClip.loop(); } } ●程序8 格式一 import java.applet.*; import java.awt.*; import java.net.*; public class showdoc extends Applet { URL docur= null; public void paint(Graphics g) { try { docur=new URL("http://www.shu.edu.cn/~xyx/doc/manhua.html"); } catch (MalformedURLException e) { System.out.println("Can´t open the URL "); } if (docur != null) { getAppletContext().showDocument(docur,"_blank"); } } } import java.applet.*; import java.awt.*; import java.net.*; public class showdoc2 extends Applet { URL docur= null; public void paint(Graphics g) { try { getAppletContext().showDocument(new URL("http://www.shu.edu.cn/ ~xyx/doc/manhua.html")); } catch (MalformedURLException e) { System.out.println("Can´t open the URL "); } } } 读取网络上文件内容的步骤可如下: 1. 创建一个URL类型的对象 如: String url = "ftp://202.120.127.218/incoming/test/readtxt.html"; URL fileur; try { fileur = new URL(url); } catch ( MalformedURLException e) { System.out.println("Can´t get URL: " ); } 2. 利用URL类的openStream(),获得对应的InputStream类的对象 如:InputStream filecon = fileur.openStream(); 3. 将InputStream对象转化为DataInputStream类的对象 如:DataInputStream filedata = new DataInputStream(filecon); 4. 读取内容 如对前面的filedata,可用filedata.readLine() 一行一行读取内容,或用filedata.readchar一个字符一个字符读取内容。 对读取到的内容,可由Java Applet进行各种处理, 并将处理结果用各种方式显示出来。 下面的例子是读取 http://www.shu.edu.cn/~xyx/doc/manhua.html文件内容的例子,为简洁起见,该例中只将文件的内容逐行读出,并在文本区显示出来。 ●程序10 import java.io.*; import java.net.*; import java.awt.*; import java.applet.*; public class showfile extends Applet{ URL fileur; TextArea showarea = new TextArea("Please wait a while for get text",10,70); public void init() { String url = "http://www.shu.edu.cn/~xyx/doc/manhua.html"; try { fileur = new URL(url); } catch ( MalformedURLException e) { System.out.println("Can´t get URL: " ); } add(showarea); } InputStream filecon = null; DataInputStream filedata = null; String fileline; try { filecon = fileur.openStream(); filedata = new DataInputStream(filecon); while ((fileline = filedata.readLine()) != null) { showarea.appendText(fileline+"\n"); } } catch (IOException e) { System.out.println("Error in I/O:" + e.getMessage()); } } } 在前面介绍的例子的基础上,可以动态地利用网络上的资源。其方法是编制一个线程,每隔一定时间自动到相应结点读取最新的内容。本文对线程的编制不再展开,读者可参考有关文章或直接套用下面的例子。 例如对上例中读取http://www.shu.edu.cn/~xyx/doc/manhua.html文件内容的例子,加入线程后如下所示。该例子每隔5秒更新一次数据。如果http://www.shu.edu.cn/~xyx/doc/manhua.html中存放的是一些变化较快的信息如股市行情等,并有程序随时动态地更新其内容,则在Web中加入这种Java Applet,可以让流览者得到动态的信息。进一步,也可以在程序中对数据进行处理,并用图形方式显示处理结果。例如将各时刻的数据绘制成曲线,流览者可以看到动态变化的曲线。 //程序11 import java.io.*; import java.net.*; import java.awt.*; import java.applet.*; public class dynashow extends java.applet.Applet implements Runnable { Thread dthread; URL fileur; TextArea showarea = new TextArea("Wait for a while...",10,70); public void init() { String url = " http://www.shu.edu.cn/~xyx/doc/manhua.html "; try { fileur = new URL(url); } catch ( MalformedURLException e) { System.out.println("Can´t get URL: " ); } add(showarea); } if (dthread == null) { dthread = new Thread(this); dthread.start(); } } public void stop() { if (dthread != null) { dthread.stop(); dthread = null; } } InputStream filecon = null; DataInputStream filedata = null; String fileline; while(true){ try { filecon = fileur.openStream(); filedata = new DataInputStream(filecon); while ((fileline = filedata.readLine()) != null) { showarea.appendText(fileline+"\n"); } } catch (IOException e) { System.out.println("Error in I/O:" + e.getMessage()); } try{ dthread.sleep(5000); } catch (InterruptedException e){} repaint(); } } } 但对显示网络上其他HTML文档没有此限制(如程序8、9),读者可以将程序编译后放到任意WWW服务器或FTP服务器,均可正常运行。 此外,当浏览器从本地盘打开调用Java Applet的HTML文档时,也不受此限制。因此,本文所有的程序都可存放在本地盘编译,只要用netscape的File/Open File菜单打开,便可正确运行。 对于另一种Java程序--Java Application,也无此限制,例如对于读取网络上文件内容的程序10,对应的Java Application可作如下编程: import java.io.*; import java.net.*; import java.awt.*; class showfile2 { public static void main(String args[]){ InputStream filecon = null; DataInputStream filedata = null; String fileline; String url = "http://www.shu.edu.cn/~xyx/doc/manhua.html"; URL fileur; try { fileur = new URL(url); filecon = fileur.openStream(); filedata = new DataInputStream(filecon); while ((fileline = filedata.readLine()) != null) { System.out.println(fileline+"\n"); } } catch (IOException e) { System.out.println("Error in I/O:" + e.getMessage()); } } } 将其以showfile2.java存盘,用javac showfile2.java编译后,只需执行“java showfile2”便可以在屏幕上打印出http://www.shu.edu.cn/~xyx/doc/manhua.html 文件的内容。 1.new URL(url字符串) 本文中的程序均采用此种格式,如: new URL("http://www.shu.edu.cn/~xyx/doc/manhua.html") 2.new URL(协议,主机名,文件名或路径) 如程序2中的 String url = "http://www.shu.edu.cn/~xyx/img/shnet.jpg"; image = getImage(new URL(url));部分可改为: image = getImage(new URL("http","www.shu.edu.cn","/~xyx /img/shnet.jpg")); 3.new URL(协议,主机名,端口号,文件名或路径)1 如:new URL("http","www.shu.edu.cn",80, "/~xyx/doc/manhua.html") 4.new URL(基准url,文件名或路径) |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者