xinhua-dictionary-to-sql
将 中华新华字典数据 转换到可被导入到 MySQL 的 sql 文件
xinhua-dictionary-to-sql Latest Version Download
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
jar
View Details ▼
jar
Java applications/libraries packager.
jar cf {{file.jar}} *
Recursively archive all files in the current directory into a `.jar` file:
jar -xvf {{file.jar}}
Unzip `.jar`/`.war` file to the current directory:
jar tf {{path/to/file.jar}}
List a `.jar`/`.war` file content:
java
View Details ▼
java
Java application launcher.
java {{classname}}
Execute a Java `.class` file that contains a main method by using just the class name:
java -classpath {{path/to/classes1}}:{{path/to/classes2}}:. {{classname}}
Execute a Java program and use additional third-party or user-defined classes:
java -jar {{filename.jar}}
Execute a `.jar` program:
