0

我正在尝试openCSV为 java 安装并从 sourceForge 下载文件。不幸的是,它是一个 . gz文件,我不知道如何处理它。

(如何让 .jar 文件添加到路径中?)

有什么建议么?

我正在使用带有 netbeans 和 eclipse 的 Windows 7 机器。

4

2 回答 2

2

使用7-zipwinrarWinzip解压 tar.gz 的内容。如果你有 cygwin,并且 cygwin bin 目录在你的路径环境变量中,你可以使用命令行来执行这个:

tar xvzf thefile.tar.gz
于 2012-04-03T22:40:45.160 回答
1

It sounds like you need some clarification about the file format:

  • .tar is a file format for storing collections of files for distribution or archiving

  • .gz is the file extension for files compressed using gzip

Open the tar.gz archive in 7-zip and drill into the folder tree until you find the opencsv-2.3 folder and then extract.

于 2012-04-04T00:51:45.667 回答