基本上常用的项目有两种,一种是Java Project,另一种是Web Project,下面就以这两种项目为例,来阐释如何在项目中加载dll文件。
Java中调用dll的方式
System.load()
java
/**
*Loads the native library specified by the filename argument. The filename argument must be an absolute path name.
*/
public static void load(String filename)
//等价于
Runtime.getRuntime().load(name)
由JDK的说明文继续阅读 »
Windows安装Redis
首先Redis官方并不支持Windows,而Windows版的Redis是由MSOpenTech提供的支持,所以首先去下载一个发布版,我选择的是Redis-x64-3.2.100.zip压缩包,解压缩得到如下文件列表
html
EventLog.dll
Redis on Windows Release Notes.docx
Redis on Windows.docx
redis.windows.conf
redis.windows-service.conf
redis-benchmark.exe
redis-benchmark.pdb
redis-check-aof.exe
redis-check-a继续阅读 »