转载

Guava 27.0 发布,Google 的 Java 核心工具库

Guava 27.0 发布了,Guava 是 Google 的一个开源项目,包含许多 Google 核心 Java 常用库,如:集合 [collections] 、缓存 [caching] 、原生类型支持 [primitives support] 、并发库 [concurrency libraries] 、通用注解 [common annotations] 、字符串处理 [string processing] 与 I/O 等。

更新内容如下:

  • ListenableFuture 现在可以作为 Guava 单独工件(com.google.guava:listenablefuture:1.0)提供。 ( b62d529 )

  • collect:为 Range 添加一个 gap(Range) 方法,用于计算它们之间的 Range。( a9dd709 )

  • net : 新增  HttpHeaders.EARLY_DATA 。( e074cf1 )

  • net : 新增  MediaType.WASM_APPLICATION 。( 0b3eb0f )

  • concurrentAbstractFuture 不再暴露  FluentFuture API。( 0f8d360 )

  • concurrent : AbstractService 新增  doCancelStart 保护方法。( 27bfe41 )

详情查看 发布公告 。

下载地址:

  • Source code (zip)

  • Source code (tar.gz)

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>27.0-jre</version>
  <!-- or, for Android: -->
  <version>27.0-android</version>
</dependency>
原文  https://www.oschina.net/news/100968/guava-27-0-released
正文到此结束
Loading...