Closed. This question needs to be more focused。它当前不接受答案。
                            
                        
                    
                
            
                    
                
                        
                            
                        
                    
                        
                            想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
                        
                        6年前关闭。
                    
                
        

我有一个pdf生成代码,需要使用“另存为对话框”保存,但我没有在java类应用程序中进行操作。这是我的代码。

PdfWriter writer = null;

    Document document = new Document();

    try {
        writer = PdfWriter.getInstance(document, new FileOutputStream(
                fileName));

        document.open();


请建议我如何添加另存为对话框。

最佳答案

尝试JFileChooser:http://docs.oracle.com/javase/tutorial/uiswing/components/filechooser.html

然后使用路径和文件名保存在后端函数中。

07-27 18:05