我正在将python转换为java但我不懂python(我知道java)。
这是python:
localtime = time.localtime(time.time())
以这种方式使用它:
policyname = 'LLC-Uninstall-D%s%s%s-T%s%s%s%s' % (localtime[0], localtime[1], localtime[2], localtime[3], localtime[4], localtime[5], localtime[6])
我想在Java中做同样的事情。这可能吗?
答案 0 :(得分:2)
当然,请使用SimpleDateFormat
:
SimpleDateFormat df = new SimpleDateFormat("'LLC-Uninstall-D'yyyyMMdd-HHmmss");
String formatted = df.format(new Date());
格式化符号的文档可以是found at the JavaDoc Page for SimpleDateFormat,您可以使用它来配置生成的完整字符串以满足您的需求。