android开发如何把字符串保存为txt格式,并存至SD卡?还有读取的问题?
发布网友
发布时间:2022-04-26 19:31
我来回答
共2个回答
热心网友
时间:2023-10-24 07:28
/**
* 保存文件
* @param toSaveString
* @param filePath
*/
public static void saveFile(String toSaveString, String filePath)
{
try
{
File saveFile = new File(filePath);
if (!saveFile.exists())
{
File dir = new File(saveFile.getParent());
dir.mkdirs();
saveFile.createNewFile();
}
FileOutputStream outStream = new FileOutputStream(saveFile);
outStream.write(toSaveString.getBytes());
outStream.close();
} catch (FileNotFoundException e)
{
e.printStackTrace();
} catch (IOException e)
{
e.printStackTrace();
}
}
/**
* 读取文件内容
* @param filePath
* @return 文件内容
*/
public static String readFile(String filePath)
{
String str = "";
try
{
File readFile = new File(filePath);
if(!readFile.exists())
{
return null;
}
FileInputStream inStream = new FileInputStream(readFile);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int length = -1;
while ((length = inStream.read(buffer)) != -1)
{
stream.write(buffer, 0, length);
}
str = stream.toString();
stream.close();
inStream.close();
return str;
}
catch (FileNotFoundException e)
{
e.printStackTrace();
return null;
}
catch (IOException e)
{
e.printStackTrace();
return null;
}
}
热心网友
时间:2023-10-24 07:28
android中有读取xml和读取json,看你自己心情选择一种格式保存你的字符串,写一起放到txt文件中,在放到android项目的 res文件夹下新建一个raw文件夹(调用时候直接R.raw.文件名),读取的方式对应。网上有很多源码。