Tag: jfilechooser

如何使用java“打开”和“保存”

我想在java中创build一个“打开”和“保存”对话框。 我想要的一个例子是在下面的图片: 打开: 保存: 我怎么去做这个?

JFileChooser.showSaveDialog(…) – 如何设置build议的文件名

臃肿的JFileChooser似乎缺less一个function:在保存文件(通常被选中以便在用户开始键入时会被replace的文件)时提示文件名的一种方法。 有没有解决的办法?

JOptionPane是/否选项确认对话框问题-Java

我创build了一个JOptionPane ,它只有两个buttonYES_NO_OPTION 。 JOptionPane.showConfirmDialogpopup后,我想点击YES BUTTON继续打开JFileChooser ,如果我点击了NO BUTTON它应该取消操作。 这似乎很容易,但我不知道我的错误在哪里。 代码片段: if(textArea.getLineCount() >= 1){ //The condition to show the dialog if there is text inside the textArea int dialogButton = JOptionPane.YES_NO_OPTION; JOptionPane.showConfirmDialog (null, "Would You Like to Save your Previous Note First?","Warning",dialogButton); if(dialogButton == JOptionPane.YES_OPTION){ //The ISSUE is here JFileChooser saveFile = new JFileChooser(); int saveOption = […]

如何限制JFileChooser目录?

我想限制我的用户到一个目录及其子目录,但“父目录”button允许他们浏览到任意目录。 我应该怎么做呢?

使用带有Swing GUI类和侦听器的JFileChooser

这是我目前的菜单: public class DrawPolygons { public static void main (String[] args) throws FileNotFoundException { /** * Menu – file reader option */ JMenuBar menuBar; JMenu menu; JMenuItem menuItem; // Create the menu bar. menuBar = new JMenuBar(); // Build the first menu. menu = new JMenu("File"); menu.setMnemonic(KeyEvent.VK_F); menu.getAccessibleContext().setAccessibleDescription("I have items"); menuBar.add(menu); // a group of […]

将JFileChooser置于所有窗口之上

我似乎遇到了一个问题,就是我非常简单地实现了一个文件select器对话框,这个对话框要求我每次最小化Netbeans以实现它,现在特别是在testing的时候,它变得非常令人沮丧。 我已经在网上看到了一些包括SO的解决scheme,但似乎没有一个能够做到这一点,而另外一些解决scheme对于我目前的水平来说似乎非常冗长和复杂。 private void fileSearch() { JFileChooser fileSelect = new JFileChooser(); int returnVal = fileSelect.showOpenDialog(null); String pathToFile; if (returnVal == JFileChooser.APPROVE_OPTION) { File file = fileSelect.getSelectedFile(); pathToFile = file.getAbsolutePath(); try { P.binaryFileToHexString(pathToFile); } catch (Exception e) { System.out.print("Oops! there was an error there…" + e); } System.out.println("\nYou chose to open this file: " + file.getName()); […]