Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は文字列を持っていますmyString = "Asia/kolkata";
myString = "Asia/kolkata";
設定する必要がありますTimeZone.setDefault(myString);
TimeZone.setDefault(myString);
上記のようにしてみました。ただし、TimeZone パラメーターに String を指定することはできません。
これを設定するには?
タイムゾーンを取得するために使用TimeZone.getTimeZone(String)し、それをデフォルトとして設定できます。
TimeZone.getTimeZone(String)