假设我正在Eclipse中编写Java代码,然后将其保存为可运行的.jar文件。该代码是100%自行编写的,因此没有从其他来源导入。
.jar文件中的任何内容(文件头,..)都包含关于我的PC或Eclipse版本的私人数据吗?
是的,可能有一个自动生成的清单文件(jar:META-INF/manifest.MF)
以下是插件的默认输出
Manifest-Version: 1.0
Built-By: borisov andrey
Build-Jdk: 1.7.0_05
Created-By: Apache Maven
Archiver-Version: Plexus Archiver
正如你所看到的,至少用户名被添加到清单文件中
更新:如果您正在使用maven,您可能需要配置maven-jar插件
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin-version}</version>
<inherited>true</inherited>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifestEntries>
<Created-By>${java.version} (${java.vendor})</Created-By>
<Built-By>ME</Built-By>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-URL>SOME URL if you want</Implementation-URL>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>your company</Implementation-Vendor>
<Implementation-Vendor-Id>your vendore id</Implementation-Vendor-Id>
</manifestEntries>
</archive>
</configuration>
</plugin>
如果在创建可运行的jar时将其中任何一个设置为元数据,我会感到惊讶。
您的可运行jar中只有resources
、dependent libraries
和manifest.xml
文件……