문제

BlackBerry 응용 프로그램에서 읽기/쓰기 텍스트 파일에 대한 샘플 코드를 알려주십시오.

올바른 솔루션이 없습니다

다른 팁

문자열 읽기/쓰기 파일에 대한 내 코드 스 니펫 :

private String readTextFile(String fName) {
  String result = null;
  FileConnection fconn = null;
  DataInputStream is = null;
  try {
   fconn = (FileConnection) Connector.open(fName, Connector.READ_WRITE);
   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.READ_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());
   }
  }
 }
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top