アプリのメイン画面に印刷したい行が 2 つあります。メイン画面に出力する変数と同じに設定しようとしました。私がJavaファイルに入れたのは次のとおりです。
public class TimeZoneConverter {
public void main(String args[]) {
//Date will return local time in Java
Date localTime = new Date();
//creating DateFormat for converting time from local timezone to GMT
SimpleDateFormat converter = new SimpleDateFormat("dd/MM/yyyy:HH:mm:ss");
//getting GMT timezone, you can get any timezone e.g. UTC
converter.setTimeZone(TimeZone.getTimeZone("GMT"));
String1 = System.out.println("local time : " + localTime);;
String2 = System.out.println("time in GMT : " + converter.format(localTime));
}
}
}
文字列を変数に解決できないと言われています。これをメイン画面に表示するにはどうすればよいですか?