字符串绝对是 Java 中最常用的一个类了,String 类的方法使用率也都非常的高,在 Java 11
中又为 String 类带来了一系列的好用操作。
trim
只能去除半角空格,而 strip
是去除各种空白符。// String新增了strip()方法,和trim()相比,strip()可以去掉Unicode空格,例如,中文空格:
String s = " Hello, JDK11!\u3000\u3000";
System.out.println(" original: [" + s + "]");
System.out.println(" trim: [" + s.trim() + "]");
System.out.println(" strip: [" + s.strip() + "]");
System.out.println(" stripLeading: [" + s.stripLeading() + "]");
System.out.println("stripTrailing: [" + s.stripTrailing() + "]");
读写文件变得更加方便。
// 创建临时文件
Path path = Files.writeString(Files.createTempFile("test", ".txt"), "http://www.csdn.net");
System.out.println(path);
Files.writeString( Path.of("./", "tmp.txt"), "hello, jdk11 files api",StandardCharsets.UTF_8);
String s = Files.readString( Paths.get("./tmp.txt"), StandardCharsets.UTF_8);
在 Java 11
中 Http Client API 得到了标准化的支持。且支持 HTTP/1.1 和 HTTP/2 ,也支持 websockets。
你可以像这样发起一个请求。
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://www.hao123.com"))
.build();
// 异步
client.sendAsync(request, HttpResponse.BodyHandlers.ofString())
.thenApply(HttpResponse::body)
.thenAccept(System.out::println)
.join();
// 同步
HttpResponse response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
可以参考 OpenJDK 官方文档。
http://openjdk.java.net/groups/net/httpclient/recipes-incubating.html
在 Java 10
中引入了 var
语法,可以自动推断变量类型。在 Java 11
中这个语法糖可以在 Lambda 表达式中使用了。
public class LocalVar {
public static void main(String[] args) {
Arrays.asList("Java", "Python", "Ruby")
.forEach((var s) -> {
System.out.println("Hello, " + s);
});
}
}
这里需要注意的是,(var k,var v)
中,k 和 v 的类型要么都用 var ,要么都不写,要么都写正确的变量类型。而不能 var 和其他变量类型混用。
对于List
接口,新增了一个of(T...)
接口,用于快速创建List
对象:
List list = List.of("Java", "Python", "Ruby");
List
的toArray()
还新增了一个重载方法,可以更方便地把List
转换为数组。可以比较一下两种转换方法:
// 旧的方法:传入String[]:
String[] oldway = list.toArray(new String[list.size()]);
// 新的方法:传入IntFunction:
String[] newway = list.toArray(String[]::new);
商业版 JDK 中一直有一款低开销的事件信息收集工具,也就是飞行记录器(Java Flight Recorder),它可以对 JVM 进行检查、分析、记录等。当出现未知异常时可以通过记录进行故障分析。这个好用的工具在 Java 11
中将开源免费。所有人都可以使用这个功能了。
参考:JDK 11