/**
* The following code shows how to use {@code Optional.isPresent}:
* {@snippet :
* if (v.isPresent()) {
* System.out.println("v: " + v.get());
* }
* }
*/
外部片段
/**
* The following code shows how to use {@code Optional.isPresent}:
* {@snippet file="ShowOptional.java" region="example"}
*/
public class ShowOptional {
void show(Optional<String> v) {
// @start region="example"
if (v.isPresent()) {
System.out.println("v: " + v.get());
}
// @end
}
}
默认UTF-8
Charset.defaultCharset()
默认为UTF-8 可使用-Dfile.encoding=UTF-8
修改默认字符集简易Http服务器
命令行工具
API
JavaDoc
@snippet
内联片段
外部片段
准备删除
finalize()