歌词保存到本地及从本地读取歌词文件
歌词保存
歌词保存的功能主要是IO流,首先使用HttpUrlConnection得到歌词的输入流,在输入流读的同时进行文件输出流的写功能,将歌词写入到文件中。下面是代码片段,主要是文件输出流的操作。
1 | File file = new File(BaseUri.STORAGE_LRC_FILE); |
从本地读取歌词
主要采取字节输入流的方式,最后返回标准歌词字符串1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18private String getLrcFromLocal() {
try {
InputStream inputStream = new FileInputStream(new File(BaseUri.STORAGE_LRC_FILE + getSongName() + ".lrc"));
ByteArrayOutputStream os = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = -1;
while ((len = inputStream.read(buffer)) != -1) {
os.write(buffer, 0, len);
}
return os.toString("gbk"); //文件编码是gbk
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return "";
}