how to read/write text file in j2me

泪湿孤枕 提交于 2019-11-29 11:09:17
public String readFile(String path)
    {
        InputStream is = null;
        FileConnection fc = null;
        String str = "";
        try
        {
            fc = (FileConnection)Connector.open(path, Connector.READ_WRITE);

            if(fc.exists()) 
            {
                int size = (int)fc.fileSize();
                is= fc.openInputStream();
                byte bytes[] = new byte[size];
                is.read(bytes, 0, size);
                str = new String(bytes, 0, size);
            }
        } 
        catch (IOException ioe) 
        {
        Alert error = new Alert("Error", ioe.getMessage(), null, AlertType.INFO);
        error.setTimeout(1212313123);
        Display.getDisplay(main).setCurrent(error);} 
        finally 
        { 
            try 
            { 
                if (null != is) 
                    is.close(); 
                if (null != fc) 
                    fc.close(); 
            } 
            catch (IOException e) 
            { 
                System.out.println(e.getMessage()); 
            } 
        } 
        return str;
    }  

    void writeTextFile(String fName, String text) 
    { 
        OutputStream os = null; 
        FileConnection fconn = null; 
        try 
        { 
            fconn = (FileConnection) Connector.open(fName, Connector.READ_WRITE); 
            if (!fconn.exists()) 
                fconn.create();

            os = fconn.openDataOutputStream();
            os.write(text.getBytes()); 
            fconn.setHidden(false);
//          fconn.setReadable(true);
        } 

        catch (IOException e) 
        { 
            System.out.println(e.getMessage()); 
        } 
        finally 
        { 
            try 
            { 
                if (null != os) 
                    os.close(); 
                if (null != fconn) 
                    fconn.close(); 
            } 
            catch (IOException e) 
            { 
                System.out.println(e.getMessage()); 
            } 
        } 
    }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!