我想知道是否有任何方法可以在scala消息文件中包含对其他文件的引用以进行国际化(i18n)。
我们的消息文件变得越来越大,与它们一起工作很痛苦。所以我想知道是否有某种进口或可以制造的东西。与Enter a five-digit number: 43567
Output Of displayTheDigitsOfNumber_HardWay() method
4 3 5 6 7
Enter a five-digit number: Exception in thread "main"
java.util.NoSuchElementException: No line found
at java.util.Scanner.nextLine(Unknown Source)
at com.guru.chapter02.C02Exercise27.displayTheDigitsOfNumber_SimpleWay(C02Exercise27.java:25)
at com.guru.chapter02.C02Exercise27.main(C02Exercise27.java:15)
提前谢谢。