Java IO无法在Java Applet下读取输入文件

时间:2012-09-27 19:23:00

标签: java ioexception

Java在读取图像文件时抛出异常:

javax.imageio.IIOException: Can't read input file!
at javax.imageio.ImageIO.read(ImageIO.java:1275)
at UI.readMatrix(UI.java:27)
at MazeViewControl.init(MazeViewControl.java:45)
at sun.applet.AppletPanel.run(AppletPanel.java:424)
at java.lang.Thread.run(Thread.java:680)

当作为Java应用程序运行时,映像IO工作正常:

public class MazeViewControl extends JApplet {
UI ui;
MazeView view;
Maze maze;
int theme;
int option;
String filename="src/maze0.bmp";

public  void init() {
    ui=new UI();
    maze=new Maze();
        try {
            ui.readMatrix("src/maze0.bmp", maze, 1, 0, 0,0,319,239);
        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }

public class UI {
    public UI(){
        return;
    }
/**
   * read and construct the map from a txt file
   * @param filename
   * @throws IOException 
   */
    public void readMatrix(String filename, Maze m, int theme, int option, int sx, int sy, int ex, int ey) throws IOException{
        /* pre-read the file*/

        //Create file for the source
        File input = new File(filename);
        int rows=0;
        int columns=0;
        //Read the file to a BufferedImage
        // Surround this with try/catch or have your method
        // throw an exception
        System.out.println(filename);
        BufferedImage image = ImageIO.read(input);

2 个答案:

答案 0 :(得分:3)

它是如何工作的。 applet无法访问本地文件。您可能需要一个已授权访问文件系统的签名小程序。

答案 1 :(得分:0)

这是预期的。

如果Java applet可以自由访问所有本地文件,想象一下攻击某人的本地计算机是多么容易。在编写Java应用程序时,可以使用java.io.File来读取文件。但是,如果您正在编写Java小程序,则必须将输入文件打包为jar的一部分,并将该文件作为“资源”访问:

要解决此问题,您需要使用以下方法:

YourClass.class.getClassLoader().getResourceAsStream("yourfile.txt")

InputStream inputStream = classLoader.getResourceAsStream("yourfile.txt")

这很容易做到,可以找到here的快速解释和使用方法。