开发者

How to append the text to text file in blackberry

开发者 https://www.devze.com 2023-04-09 03:00 出处:网络
I want to ap开发者_Python百科pend the text to a text file in blackberry ,how can i do itCheckout this code. This basically writes log to a file in SD Card. You can customize the way you want.Enjoy.

I want to ap开发者_Python百科pend the text to a text file in blackberry ,how can i do it


Checkout this code. This basically writes log to a file in SD Card. You can customize the way you want. Enjoy.

static String pFilePath = "SDCard/BlackBerry/pictures/Log.txt";

    public static void writeLog(String data) {
        FileConnection fc = null;
        OutputStream lStream = null;
        Date d = new Date();
        Calendar c = Calendar.getInstance();
        String time = new String();
        if (pFilePath != null) {
            try {
            fc = (FileConnection) Connector.open("file:///" + pFilePath,
                Connector.READ_WRITE);
            if (null == fc || fc.exists() == false) {
                fc.create();
            }
            lStream = fc.openOutputStream(fc.fileSize());
            c.setTime(d);

            time = c.get(Calendar.HOUR_OF_DAY) + ":" + c.get(Calendar.MINUTE) + ":" + c.get(Calendar.SECOND)            + ":" + c.get(Calendar.MILLISECOND);
            data = "\n" + time + "("
                + (System.currentTimeMillis() - currentTimeMillies)
                + " ms)" + " -- " + data;
            currentTimeMillies = System.currentTimeMillis();
            lStream.write(data.getBytes());

            } catch (Exception ioex) {
            ioex.printStackTrace();
            } finally {
            if (lStream != null) {
                try {
                lStream.close();
                lStream = null;
                } catch (Exception ioex) {
                }
            }
            if (fc != null) {
                try {
                fc.close();
                fc = null;
                } catch (Exception ioex) {
                }
            }
            }
        }
        }
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号