Java tutorial
import java.util.ResourceBundle; public class Main { public static void main(String[] args) { ResourceBundle bundle = ResourceBundle.getBundle("hello"); System.out.println(bundle.getString("hello")); } }