(String[] args)
| 11 | */ |
| 12 | public class autoDecoderutil { |
| 13 | public static void main(String[] args) { |
| 14 | String regrex_req = FileGetValue(new File("target/test.properties"),"regrex_req").trim(); // regrex_req |
| 15 | System.out.println(regrex_req); |
| 16 | } |
| 17 | public static String FileGetValue(File f, String key) { // 读取properties文件,根据key取出value |
| 18 | BufferedReader reader = null; |
| 19 | String value = ""; |
nothing calls this directly
no test coverage detected