简体   繁体   English

Java文件写入问题

[英]Java file writing problems

I am having an issue in Java with file creation. 我在Java中创建文件时遇到问题。 Here is my code - 这是我的代码-

ArrayList<File> list = new ArrayList<File>();
            PrintWriter writer = new PrintWriter(/*classpathRoot + */"list.txt", "UTF-8");
            writer.println("");
            writer.close();
            list.add(new File("list.txt"));
            ZipParameters args = new ZipParameters();
            args.setCompressionMethod(Zip4jConstants.COMP_STORE);
            args.setEncryptFiles(true);
            args.setEncryptionMethod(Zip4jConstants.ENC_METHOD_AES);
            args.setAesKeyStrength(Zip4jConstants.AES_STRENGTH_256);
            args.setPassword(keys);
            ZipOutputStream outputStream = null;
            InputStream inputStream = null;
            File out = new File("list.txt");
            outputStream = new ZipOutputStream(new FileOutputStream(/*classpathRoot + */"data/" + NewUser.ufield.getText() + ".zip"));
            outputStream.putNextEntry(out, args);
            inputStream = new FileInputStream(out);
            byte[] readBuff = new byte[4096];
            int readLen = -1;
            while ((readLen = inputStream.read(readBuff)) != -1) {
                outputStream.write(readBuff, 0, readLen);
            }
            outputStream.closeEntry();
            inputStream.close();
            outputStream.finish();
            outputStream.close();

The problem I am having is that when I am in eclipse, the text file is created, but outside of eclipse it is not. 我遇到的问题是在eclipse中创建文本文件,但是在eclipse之外却没有。 The zip file never even creates, in eclipse or not. 压缩文件永远不会创建,无论是否在Eclipse中。 Got any tips? 有任何提示吗?

I get the following Exception: 我收到以下异常:

java.io.FileNotFoundException: data/eduyjd.zip (No such file or directory)
at java.io.FileOutputStream.open(Native Method)
at java.io.FileOutputStream.<init>(FileOutputStream.java:221)
at java.io.FileOutputStream.<init>(FileOutputStream.java:110)
at main.NewUserHandler.actionPerformed(NewUserHandler.java:49)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
at java.awt.Component.processMouseEvent(Component.java:6516)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3311)
at java.awt.Component.processEvent(Component.java:6281)
at java.awt.Container.processEvent(Container.java:2229)
at java.awt.Component.dispatchEventImpl(Component.java:4872)
at java.awt.Container.dispatchEventImpl(Container.java:2287)
at java.awt.Component.dispatchEvent(Component.java:4698)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
at java.awt.Container.dispatchEventImpl(Container.java:2273)
at java.awt.Window.dispatchEventImpl(Window.java:2719)
at java.awt.Component.dispatchEvent(Component.java:4698)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)
at java.awt.EventQueue.access$200(EventQueue.java:103)
at java.awt.EventQueue$3.run(EventQueue.java:694)
at java.awt.EventQueue$3.run(EventQueue.java:692)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
at java.awt.EventQueue$4.run(EventQueue.java:708)
at java.awt.EventQueue$4.run(EventQueue.java:706)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

edit: updated code and exception, text files write in both eclipse and outside, zip files still do not write 编辑:更新的代码和异常,文本文件同时在Eclipse和外部写入,zip文件仍然不写入

outputStream = new ZipOutputStream(new FileOutputStream(/*classpathRoot + */"data/" + NewUser.ufield.getText() + ".zip"));

this points to non-existing file... see if data folder exists ;) that can cause it 这指向不存在的文件...查看data文件夹是否存在;)可能导致它

File folder = new File("data");
if (!folder.exists())
    folder.mkdir();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM