vote up 1 vote down star
1

hi, please give me a sample code for read/write text file in blackberry application.

flag

2 Answers

vote up 2 vote down

Using

FileConnection Interface

link|flag
vote up 3 vote down

My code snippet for string read/write files:

private String readTextFile(String fName) {
	String result = null;
	FileConnection fconn = null;
	DataInputStream is = null;
	try {
		fconn = (FileConnection) Connector.open(fName, Connector.READ);
		is = fconn.openDataInputStream();
		byte[] data = IOUtilities.streamToBytes(is);
		result = new String(data);
	} catch (IOException e) {
		System.out.println(e.getMessage());
	} finally {
		try {
			if (null != is)

				is.close();
			if (null != fconn)
				fconn.close();
		} catch (IOException e) {
			System.out.println(e.getMessage());
		}
	}
	return result;
}


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

		os = fconn.openDataOutputStream();
		os.write(text.getBytes());
	} 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());
		}
	}
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.