Maven新增本地jar依賴及commons-codec.jar的使用
阿新 • • 發佈:2019-02-05
Maven新增本地依賴
將你需要的jar包拷貝到lib下,在pom.xml檔案下新增一下資訊即可。
<dependencies>
<!-- Base64編碼需要 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>codec</artifactId>
<version>1.10</version>
<scope>system</scope >
<systemPath>${project.basedir}/lib/commons-codec-1.10.jar</systemPath>
</dependency>
</dependencies>
下載commons-codec-1.10.jar包以及使用
選擇commons-codec-1.10-bin.zip進行下載。
將.zip解壓以後則會得到你所需的.jar包。
可以在META-INF資料夾下的MANIFEST.MF使用記事本開啟,檢視包名、版本號等相關資訊
1、將byte[]陣列base64編碼成String
String base64String = Base64.encodeBase64String(new btye[]);