File file = new File("C:/example/hello.txt); FileOutputStream fos = new FileOutputStream(file); byte[] strToByte = v.getBytes(); fos.write(strToByte); ...
確定! 回上一頁