作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到了一个具有以下结构的 .jar,可以在 php 中使用
public class encryption
{
public static cryptio encrypt(String user, String password)
{
System.out.println(output);
}
public static cryptio decrypt(String data)
{
System.out.println(output);
}
}
然后我就可以在 php 中使用以下代码来访问 jar
<?php echo exec("java -jar encryption.jar 2>&1", $output); ?>
但是,当前输出“加密.jar 中没有主要 list 属性”,我如何指定使用 php 中的加密和解密函数?
最佳答案
你can't call a non-main method from a JAR文件。当您收到所看到的消息时,这意味着 JAR hasn't been constructed properly必须声明为主类。我建议按照 this answer 创建一个包装 JAR .
关于java - 如何从 php 执行 java 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31420671/
我是一名优秀的程序员,十分优秀!