import java.io.IOException;
import java.lang.module.ModuleFinder;
import java.net.URI;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Path;
import java.util.Collections;

class TempDirTest {
    public static void main(String... args) throws IOException {
        URI pathUri = Path.of("C:/Users/tongwan/Documents/JI-9071162/test.zip").toUri();
        URI jarUri = URI.create("jar:" + pathUri + "!/");

        try (FileSystem fileSystem = FileSystems.newFileSystem(jarUri, Collections.emptyMap())) {
            ModuleFinder.of(Path.of(jarUri)).findAll();
        }
    }
} 