- 论坛徽章:
- 0
|
一些文本文件需要加载到程序里面,但是加载后再不会变化.所以考虑编译时就载入,增加效率减少系统开销,不需要运行时再一次一次的加载.
不知道又没有方法可以这么作,我尝试了final static,如下所示,不能得到想要的结果,删除test.txt文件就会报错.还请各位大侠指点.
1 import java.io.File;
2 import java.io.FileInputStream;
3
4 public class FSString{
5 public final static String TEST = getContent("test.txt");
6
7 private static String getContent(String filename){
8 try{
9 File file = new File(filename);
10 int length = (int)file.length();
11 byte[] content = new byte[length];
12 FileInputStream fis = new FileInputStream(file);
13 fis.read(content);
14 return (new String(content));
15 }
16 catch(Exception e){
17 System.out.println(e.getMessage());
18 return "Error";
19 }
20 }
21
22 public static void main(String[] args){
23 System.out.println(FSString.TEST);
24 }
25 }
|
|
|