Note: Fileapple.propertiesneed to be placed in the SRC root directory
apple.properties file content:
deviceName_meizu=85GBBMA2353T
deviceName_huawei=022TAS7N51009853
deviceName_oppo=NFNNP78T99999999
deviceName_redmi=fd327d02
code execution:
public static void main(String[] args) {
// Note: The file does not need to be added with a file suffix name
ResourceBundle rb = ResourceBundle.getBundle("apple");
String s = rb.getString("deviceName_meizu");
System.out.println(s);
}
execute results:
85GBBMA2353T