2016년 1월 22일 금요일

byte, string 을 파일에 저장하기 in java



특정경로에 byte 데이터나 string 데이터를 저장하고 싶을때 사용합니다.



    public static boolean fileWriteByte(String path, byte[] data)
    {
     try {
      ////////////////////////////////////////////////////////////////
      FileOutputStream out = new FileOutputStream(path);
      out.write(data);
      out.close();
      ////////////////////////////////////////////////////////////////
     } catch (IOException e) {
      return false;
     }
     return true;
    }
    public static boolean fileWriteString(String path, String data)
    {
     try {
      ////////////////////////////////////////////////////////////////
      BufferedWriter out = new BufferedWriter(new FileWriter(path));
      out.write(data);
      out.close();
      ////////////////////////////////////////////////////////////////
     } catch (IOException e) {
      return false;
     }
     return true;
    }






댓글 없음:

댓글 쓰기