1

我正在使用以下代码上传图片。问题是上传图片后我无法更改文件权限。我的文件权限默认设置为rw-r--r--( 0644)。是否可以更改文件权限或将其设置为0777默认值?它在我的本地系统中运行良好。但无法更改我的 linux 服务器中的权限。

    <%
    try

    {

        int filesize=0;
        String fieldname="",fieldvalue="",filename="",content="",bookid="",bkdescription="";        

        try {
            List<FileItem> items = new ServletFileUpload(new DiskFileItemFactory()).parseRequest(request);
            for (FileItem item : items) {
                if (item.isFormField()) {
                    fieldname = item.getFieldName();
                    fieldvalue = item.getString();                 
                    if(fieldname.equals("homeid")){
                        bookid=fieldvalue;
                    }

                    if(fieldname.equals("bkdescription")){
                        bkdescription=fieldvalue;
                    }             

                } else {
                    try{
                    fieldname = item.getFieldName();
                    filename = FilenameUtils.getName(item.getName());
                    InputStream filecontent = item.getInputStream();
                    filesize=(int)item.getSize();
                    filename="literal_"+bookid+".jpg";
                    if(filesize>0){                     
                    byte[] b=new byte[filesize];                  
                    int c=0;                                   

                    File f=new File(getServletConfig().getServletContext().getRealPath("/")+"/imagesX");
    String filePah=getServletConfig().getServletContext().getRealPath("/")+"/imagesX";

                    if(f.isDirectory())
                    {
                        String fl[]=f.list();
                        for(int i=0;i<fl.length;i++)

                            {

              File fd=new File(getServletConfig().getServletContext().getRealPath("/")+"/imagesX/"+fl[i]);
                             if(fd.getName().equals(filename))
                             fd.delete();

                        }

                    }

                    if(!f.exists())
    {
            new File(filePah).mkdir();      
f.mkdir()
    }                

   java.io.FileOutputStream fout=new java.io.FileOutputStream(getServletConfig().getServletContext().getRealPath("/")+"/imagesX/"+filename);    

                    while((c = filecontent.read(b)) != -1 )
                    {
                        fout.write(b, 0, c);

                    }

                    fout.close();
                    filecontent.close();
                    }

                    }catch (Exception e) {
                System.out.println("Exception in creation of file      :"+e);

                    }

                }

            }

        } catch (FileUploadException e) {
            throw new ServletException("Cannot parse multipart request.", e);
        }

    }

    catch(Exception exp)

    {
        out.println(exp);
    }

    %>
4

2 回答 2

1

您不能从 Java 代码内部更改文件权限。

您系统的默认 umask 设置为0644用于新文件。更改默认 umask 不是一个好主意。

您需要做的是将目录的权限设置为0777,然后将目录的权限重新定义ACL为递归,因此在其中创建的所有新文件都将继承相同的权限。

这是一个显示如何进行的链接 - https://superuser.com/questions/151911/how-to-make-new-file-permission-inherit-from-the-parent-directory

于 2012-06-19T07:18:44.580 回答
0

另一种解决方案是使用系统命令 chmod 从外部更改权限。

例子:

public static void runCmd (String[] cmd) {

    try {
        Process p = Runtime.getRuntime().exec(cmd);
        BufferedReader r = new BufferedReader(
            new InputStreamReader (
                p.getInputStream()
            )
        );
    } catch(Exception e) {
    }
}

    runCmd(new String[] {
        "/bin/chmod",
        "755",
        "/path/to/your/script"
    });

PS您是否还尝试从Oracle数据库中的存储过程调用Java?

于 2014-06-16T18:51:13.467 回答