mirror of
https://github.com/peterdell/wudsn-ide.git
synced 2025-04-03 09:31:33 +00:00
Test
This commit is contained in:
commit
8134a83abf
11
Test-Java/.classpath
Normal file
11
Test-Java/.classpath
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="lib" path="lib/commons-compress-1.15.jar" sourcepath="lib/commons-compress-1.15-sources.jar">
|
||||
<attributes>
|
||||
<attribute name="javadoc_location" value="jar:platform:/resource/Test-Java/lib/commons-compress-1.15-javadoc.jar!/"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre1.8.0_144"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
1
Test-Java/.gitignore
vendored
Normal file
1
Test-Java/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/bin
|
17
Test-Java/.project
Normal file
17
Test-Java/.project
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>Test-Java</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
11
Test-Java/.settings/org.eclipse.jdt.core.prefs
Normal file
11
Test-Java/.settings/org.eclipse.jdt.core.prefs
Normal file
@ -0,0 +1,11 @@
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
BIN
Test-Java/lib/commons-compress-1.15-javadoc.jar
Normal file
BIN
Test-Java/lib/commons-compress-1.15-javadoc.jar
Normal file
Binary file not shown.
BIN
Test-Java/lib/commons-compress-1.15-sources.jar
Normal file
BIN
Test-Java/lib/commons-compress-1.15-sources.jar
Normal file
Binary file not shown.
BIN
Test-Java/lib/commons-compress-1.15.jar
Normal file
BIN
Test-Java/lib/commons-compress-1.15.jar
Normal file
Binary file not shown.
21
Test-Java/src/Main.java
Normal file
21
Test-Java/src/Main.java
Normal file
@ -0,0 +1,21 @@
|
||||
import java.io.File;
|
||||
import java.util.zip.ZipEntry;
|
||||
import java.util.zip.ZipFile;
|
||||
|
||||
import org.apache.commons.compress.archivers.zip.*;
|
||||
|
||||
public class Main {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
|
||||
String file = "C:\\Users\\D025328\\Documents\\Eclipse\\workspace.jac\\com.wudsn.site\\site\\productions\\atari800\\thecartstudio\\thecartstudio.zip";
|
||||
System.out.println(file);
|
||||
ZipFile zipFile=new ZipFile(new File(file));
|
||||
ZipEntry entry=zipFile.getEntry("TheCartStudio.jar");
|
||||
System.out.println(entry+":"+ entry.getSize());
|
||||
ZipArchiveEntry archiveEntry=new ZipArchiveEntry(entry);
|
||||
System.out.println(archiveEntry+":"+ archiveEntry.getUnixMode());
|
||||
zipFile.close();
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user