- 授权协议: CPL
- 开发语言: Java
- 操作系统: Windows
- 软件首页: http://jxll.sourceforge.net/
软件介绍
JXLL 提供了一个 Java 的接口用来跟 Excel Addins (XLLs) 交互,可以直接执行 Addins 中提供的函数。
示例代码:
import org.boris.jxll.Addin;
import org.boris.jxll.XLL;
import org.boris.jxll.XLOper;
public class JXLLExample
{
public static void main(String[] args) throws Exception {
System.out.println("Loading TestXLL.dll...");
// Load the XLL and check the result
Addin a = XLL.load("TestXLL.dll");
if (a == null) {
System.out.println("Failed to load addin");
return;
}
// Create some random arguments
double a1 = Math.round(Math.random() * 60000) / 100.;
double a2 = Math.round(Math.random() * 4000) / 100.;
System.out.println("Invoking TestSum(" + a1 + "," + a2 + ")");
// Invoke the TestSum functon
XLOper res = a.invoke("TestSum", new Double(a1), new Double(a2));
// Output the result
System.out.println(res.num);
}
}
The Smashing Book
Jacob Gube、Dmitry Fadeev、Chris Spooner、Darius A Monsef IV、Alessandro Cattaneo、Steven Snell、David Leggett、Andrew Maier、Kayla Knight、Yves Peters、René Schmidt、Smashing Magazine editorial team、Vitaly Friedman、Sven Lennartz / 2009 / $ 29.90 / € 23.90
The Smashing Book is a printed book about best practices in modern Web design. The book shares technical tips and best practices on coding, usability and optimization and explores how to create succes......一起来看看 《The Smashing Book》 这本书的介绍吧!
