无法初始化类com.sun.jna.Native

时间:2012-08-03 04:55:06

标签: java linux jsp file-permissions jna

我试图使用JNA更改linux服务器上程序上传文件的文件权限。我的推荐是thisthis。我的代码如下。我得到Operation not permitted例外。有什么方法可以解决这个问题吗?有没有其他方法来programmicaly更改上传文件的权限?或者有没有办法上传具有指定文件权限的文件。我正在使用java 1.5。我把jna.jar放在/public_html/WEB-INF/lib中,有人可以为初学者推荐一个好的JNA教程吗?

JSP代码(用于测试)

<%@page import="cc.FileModifierLinux"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>  
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%

try
{


    FileModifierLinux flx=new FileModifierLinux();
    String pathX = getServletContext().getRealPath("/testpage.jsp");
    flx.Update(pathX);
    out.println("No Exception");
}
catch(Exception exp)
{
    out.println("exp :"+exp);
}
%>
</body>
</html>

使用的课程

package cc;
import com.sun.jna.Library;
import com.sun.jna.Native;

public class FileModifierLinux {
     CLibrary libc = (CLibrary) Native.loadLibrary("c", CLibrary.class);
    public void Update(String pth) {
        libc.chmod(pth, 0755);
    }
}

interface CLibrary extends Library {
    public int chmod(String path, int mode);
}

异常

有关完整的例外情况,请参阅this

 org.apache.jasper.JasperException: Exception in JSP: /index_check.jsp:23

20: {
21:     
22:     
23:     FileModifierLinux flx=new FileModifierLinux();
24:     String pathX = getServletContext().getRealPath("/testpage.jsp");
25:     flx.Update(pathX);
26:     out.println("No Exception");


Stacktrace:
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:491)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:395)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:308)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:259)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)

root cause

javax.servlet.ServletException: Could not initialize class com.sun.jna.Native

2 个答案:

答案 0 :(得分:2)

我有类似的问题;对我来说,从JNA 3.0.9升级到3.2.7解决了这个问题。我还添加了platform.jar,这是我以前缺少的。

答案 1 :(得分:1)

您可能需要在服务器上安装libjnidispatch.so,以便在java.library.path中可用,以便JNA可以加载它。引发的异常是由于JNA没有找到该库并试图从它自己的jar文件中解压缩它。

根据原始异常,除了指定的受保护位置外,不允许您的servlet加载本机库。检查servlet容器文档,了解如何安装和加载JNI库。