- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的程序中,src 目录下列出了三个文件夹:文件、声音、图像。我不确定为什么我的代码没有被检测到。当我运行程序时,我收到以下消息:“java.io.FileNotFoundException:files\7.txt(系统找不到指定的路径)”。我这里附有图片。请帮忙。
下面是我的代码:
package riddle;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.net.URL;
import java.util.Random;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.UnsupportedAudioFileException;
import javax.swing.BorderFactory;
import javax.swing.ButtonGroup;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.border.Border;
import javax.swing.border.CompoundBorder;
public class Math_Riddle extends JFrame implements ActionListener
{
/**
*
*/
private static final long serialVersionUID = 1L;
JLabel lblQuestion;
JLabel lblImage;
JButton bOK;
JButton bExit;
JPanel radioPanel;
JPanel panBottom;
JRadioButton[] radioButton;
String [] store ;
ButtonGroup bg;
JButton bNext;
JPanel mainPanel;
JPanel pRight;
JLabel lblCorrect;
JLabel lblWrong;
int vCorrect = 0;
int vWrong = 0;
public Math_Riddle()
{
mainPanel = new JPanel(new BorderLayout());
buildingGUI();
listAllFiles();
innitializeAllComponents();
int fileNumber = generateRandomNumber();
String filePath = "files/" + fileNumber + ".txt";
String strQuestion = readTextFile(filePath);
store = strQuestion.toString().split("!!!");
lblQuestion.setText("<html>" + store[0] + "</html>");
//I need to get the image and display at the center according
//to the fileNumber;
getTheImageAndDisplay(fileNumber);
assignRandomNumberToRadioButton(store[1]);
mainPanel.add(lblQuestion, BorderLayout.NORTH);
mainPanel.add(radioPanel, BorderLayout.WEST);
mainPanel.add(panBottom, BorderLayout.SOUTH);
mainPanel.add(lblImage, BorderLayout.CENTER);
mainPanel.setPreferredSize(new Dimension(640, 480));
this.getContentPane().add(mainPanel);
}
private void listAllFiles()
{
// TODO Auto-generated method stub
File file = new File(".");
for(String fileNames : file.list()) System.out.println(fileNames);
}
private void getTheImageAndDisplay(int fileNumber)
{
// TODO Auto-generated method stub
String filePath = "images/";
lblImage.setIcon(new ImageIcon(filePath + fileNumber + ".png"));
}
private void assignRandomNumberToRadioButton(String sAnswer)
{
// TODO Auto-generated method stub
int number = Integer.parseInt(sAnswer.toString().trim());
System.out.println("number: " + number);
Random random = new Random();
int rand = random.nextInt(4); //This is the number of radioButton.
System.out.println("rand is: " + rand);
radioButton[rand].setText(sAnswer);
if(!radioButton[0].getText().equals(""))
{
radioButton[1].setText("" +( number + 2));
radioButton[2].setText("" + (number - 2));
radioButton[3].setText("" + (number + 1));
}
else if(!radioButton[1].getText().equals(""))
{
radioButton[0].setText("" +( number + 2));
radioButton[2].setText("" + (number - 2));
radioButton[3].setText("" + (number + 1));
}
else if(!radioButton[2].getText().equals(""))
{
radioButton[1].setText("" +( number + 2));
radioButton[0].setText("" + (number - 2));
radioButton[3].setText("" + (number + 1));
}
else if(!radioButton[3].getText().equals(""))
{
radioButton[1].setText("" +( number + 2));
radioButton[2].setText("" + (number - 2));
radioButton[0].setText("" + (number + 1));
}
}
/**
* Construct GUI.
*/
private void buildingGUI()
{
lblImage = new JLabel();
bNext = new JButton("Next");
lblQuestion = new JLabel();
bOK = new JButton("OK");
bExit = new JButton("Exit");
lblQuestion.setFont(new Font("Tahoma", Font.PLAIN, 12));
radioPanel = new JPanel();
panBottom = new JPanel();
panBottom.setLayout(new GridLayout(1, 2));
panBottom.add(bOK);
panBottom.add(bExit);
bg = new ButtonGroup();
radioPanel.setLayout(new GridLayout(4, 1));
radioButton = new JRadioButton[4];
radioButton[0] = new JRadioButton();
radioButton[1] = new JRadioButton();
radioButton[2] = new JRadioButton();
radioButton[3] = new JRadioButton();
radioPanel.setLayout(new GridLayout(10, 1));
radioPanel.add(radioButton[0]);
radioPanel.add(radioButton[1]);
radioPanel.add(radioButton[2]);
radioPanel.add(radioButton[3]);
radioPanel.add(new JLabel());
radioPanel.add(new JLabel());
radioPanel.add(new JLabel());
radioPanel.add(bNext);
radioPanel.add(new JLabel());
radioPanel.add(new JLabel());
bg.add(radioButton[0]);
bg.add(radioButton[1]);
bg.add(radioButton[2]);
bg.add(radioButton[3]);
pRight = new JPanel();
pRight.setLayout(new GridLayout(5, 2));
lblCorrect = new JLabel();
pRight.add(lblCorrect);
lblWrong = new JLabel();
pRight.add(lblWrong);
pRight.add(new JLabel(" "));
pRight.add(new JLabel(" "));
mainPanel.add(pRight, BorderLayout.EAST);
}
private int generateRandomNumber()
{
// TODO Auto-generated method stub
Random random = new Random();
int rand = random.nextInt(20); //This is the number of Files in the system.
return rand;
}
private void innitializeAllComponents()
{
// TODO Auto-generated method stub
CompoundBorder border;
Border raisedbevel = BorderFactory.createRaisedBevelBorder();
Border loweredbevel = BorderFactory.createLoweredBevelBorder();
border = BorderFactory.createCompoundBorder( raisedbevel, loweredbevel);
lblQuestion.setFont(new Font("Tahoma", Font.PLAIN, 18));
lblQuestion.setBorder(BorderFactory.createLineBorder(Color.GREEN));
lblQuestion.setBorder(border);
radioPanel.setBorder(border);
pRight.setBorder(border);
panBottom.setBorder(border);
radioButton[0].setFont(new Font("Tahoma", Font.BOLD, 16));
radioButton[1].setFont(new Font("Tahoma", Font.BOLD, 16));
radioButton[2].setFont(new Font("Tahoma", Font.BOLD, 16));
radioButton[3].setFont(new Font("Tahoma", Font.BOLD, 16));
lblCorrect.setFont(new Font("Tahoma", Font.BOLD, 14));
lblCorrect.setForeground(Color.BLUE);
lblCorrect.setHorizontalAlignment(JLabel.CENTER);
lblWrong.setFont(new Font("Tahoma", Font.BOLD, 14));
lblWrong.setForeground(Color.red);
lblWrong.setHorizontalAlignment(JLabel.CENTER);
bNext.addActionListener(this);
}
@SuppressWarnings("resource")
private static String readTextFile(String fileName)
{
// TODO Auto-generated method stub
BufferedReader reader;
try
{
reader = new BufferedReader(new FileReader(fileName));
String line = null;
StringBuilder stringBuilder = new StringBuilder();
String ls = System.getProperty("line.separator");
try
{
while(( line = reader.readLine()) != null )
{
stringBuilder.append(line);
stringBuilder.append(ls);
}
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
return stringBuilder.toString();
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
}
@Override
public void actionPerformed(ActionEvent ae)
{
// TODO Auto-generated method stub
if(ae.getSource().equals(bNext))
{
//if nothing selected, display a message,
//else: get the answer and display.
if(!radioButton[0].isSelected() && !radioButton[1].isSelected() &&
!radioButton[2].isSelected() && !radioButton[3].isSelected())
{
JOptionPane.showMessageDialog(this,"Please select an Answer.", "Nothing selected",
JOptionPane.OK_OPTION);
return;
}
else //when user select an answer.
{
String strAnswer = "";
if(radioButton[0].isSelected())
{
strAnswer = radioButton[0].getText().trim();
}
else if(radioButton[1].isSelected())
{
strAnswer = radioButton[1].getText().trim();
}
else if(radioButton[2].isSelected())
{
strAnswer = radioButton[2].getText().trim();
}
else if(radioButton[3].isSelected())
{
strAnswer = radioButton[3].getText().trim();
}
if(strAnswer.equals(store[1].trim()))
{
String strCorrect = lblCorrect.getText();
if(strCorrect.equals(""))
{
strCorrect = "0";
}
vCorrect = Integer.parseInt(strCorrect);
vCorrect = vCorrect + 1;
lblCorrect.setText("" + vCorrect);
playSound("correct");
}
else
{
String strWrong = lblWrong.getText();
if(strWrong.equals(""))
{
strWrong = "0";
}
vWrong = Integer.parseInt(strWrong);
vWrong = vWrong + 1;
lblWrong.setText("" + vWrong);
playSound("wrong");
}
int fileNumber = generateRandomNumber();
String filePath = "files\\" + fileNumber + ".txt";
System.out.println("filePath: " + filePath);
String strQuestion = readTextFile(filePath);
store = strQuestion.toString().split("!!!");
lblQuestion.setText("<html>" + store[0] + "</html>");
System.out.println("store[0] is: " + store[0]);
System.out.println("store[1]" + store[1]);
clearTextInAllRadioButtons();
assignRandomNumberToRadioButton(store[1]);
getTheImageAndDisplay(fileNumber);
}
}
}
private void playSound(String sound)
{
// TODO Auto-generated method stub
try
{
URL url = null;
if(sound.equals("correct"))
{
url = this.getClass().getClassLoader().getResource("sound/ding.wav");
}
else if(sound.equals("wrong"))
{
url = this.getClass().getClassLoader().getResource("sound/buzz.wav");
}
AudioInputStream audioIn = AudioSystem.getAudioInputStream(url);
// Get a sound clip resource.
Clip clip = AudioSystem.getClip();
// Open audio clip and load samples from the audio input stream.
clip.open(audioIn);
clip.start();
}
catch (UnsupportedAudioFileException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
catch (LineUnavailableException e)
{
e.printStackTrace();
}
}
private void clearTextInAllRadioButtons()
{
// TODO Auto-generated method stub
radioButton[0].setText("");
radioButton[1].setText("");
radioButton[2].setText("");
radioButton[3].setText("");
bg.clearSelection();
}
/**
* @param args
*/
public static void main(String[] s)
{
Math_Riddle mr = new Math_Riddle();
mr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
mr.pack();
mr.setVisible(true);
}
}
<小时/>
关于文件 file = new File(resource.toURI());这是我尝试过但仍然无效的方法:
URL url = null;
Random rand = new Random();
int random = rand.nextInt(19);
String filePath = "files/" + random + ".txt";
System.out.println("file: " + filePath);
url = this.getClass().getClassLoader().getResource(filePath);
System.out.println(url.toString().trim());
try
{
File file = new File(url.toURI());
}
catch (URISyntaxException e1)
{
// TODO Auto-generated catch block
e1.printStackTrace();
}
File folder = new File(".");
for(String fileNames : folder.list())
{
System.out.println(fileNames);
}
BufferedReader reader;
try
{
reader = new BufferedReader(new FileReader(filePath));
String line = null;
StringBuilder stringBuilder = new StringBuilder();
String ls = System.getProperty("line.separator");
try
{
while(( line = reader.readLine()) != null )
{
stringBuilder.append(line);
stringBuilder.append(ls);
}
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
下面是eclipse中的错误信息:
文件:files/5.txt文件:/C:/JavaProject/Tesing/bin/files/5.txt.classpath。项目.设置垃圾桶图片源代码java.io.FileNotFoundException: files\5.txt (系统找不到指定的路径) 在 java.io.FileInputStream.open( native 方法) 在 java.io.FileInputStream.(来源未知) 在 java.io.FileInputStream.(来源未知) 在 java.io.FileReader.(来源未知) 在Testing.actionPerformed(Testing.java:72)
当我尝试列出所有文件/文件夹时。它只列出了文件夹:bin、images、src...如您在上面看到的。请帮忙。提前致谢。
最佳答案
您正在指定带有路径的资源文件。仅当您确实知道当前目录的完整路径或相对路径时,这才有效;例如按照另一个答案中的建议,在前面加上“src”。
但是,最好在构建中包含资源(无论是通过 IDE 还是外部构建系统(如 gradle 或 maven)构建),以便将这些文件复制到类路径中(可能是您已经在这样做了)。在这种情况下,您可以使用 Java 类加载器检索资源,如下所示:
URL resource = getClass().getResource("/path/to/resource");
这里有一些注释:
ImageIcon
构造函数中一样。此方法的另一个好处是,如果您的应用程序也打包在 jar 文件中,那么它就可以工作,因为那时 URL 将指向 jar 文件中的正确位置。但是,如果您知道它是一个文件,并且您需要文件引用,则可以像这样转换:File file = new File(resource.toURI ());
。 编辑:以下是一个适合丹尼的示例,基于他的“答案”帖子和示例。
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.net.URISyntaxException;
import java.net.URL;
public class ResourceTest {
public static void main(String[] args) throws IOException, URISyntaxException {
new ResourceTest().test();
}
public void test() throws URISyntaxException, IOException {
URL url = getClass().getClassLoader().getResource("files/1.txt");
System.out.println("URL: " + url);
File file = new File(url.toURI());
System.out.println("FILE: " + file);
File folder = file.getParentFile();
System.out.println("FOLDER: " + folder);
System.out.println("FOLDER LIST: ");
for (String fileName : folder.list()) {
System.out.println(" " + fileName);
}
System.out.println("FILE CONTENTS:");
BufferedReader reader = new BufferedReader(new FileReader(file));
String line = reader.readLine();
while (line != null) {
System.out.println(line);
line = reader.readLine();
}
}
}
产生以下输出:
URL: file:/home/steinar/Safe/source/private/out/production/files/1.txt
FILE: /home/steinar/Safe/source/private/out/production/files/1.txt
FOLDER: /home/steinar/Safe/source/private/out/production/files
FOLDER LIST:
1.txt
FILE CONTENTS:
This is
my test
text file
关于java - 无法在 src 目录下找到文件和图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15439429/
今天我在一个 Java 应用程序中看到了几种不同的加载文件的方法。 文件:/ 文件:// 文件:/// 这三个 URL 开头有什么区别?使用它们的首选方式是什么? 非常感谢 斯特凡 最佳答案 file
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我有一个 javascript 文件,并且在该方法中有一个“测试”方法,我喜欢调用 C# 函数。 c# 函数与 javascript 文件不在同一文件中。 它位于 .cs 文件中。那么我该如何管理 j
需要检查我使用的文件/目录的权限 //filePath = path of file/directory access denied by user ( in windows ) File fil
我在一个目录中有很多 java 文件,我想在我的 Intellij 项目中使用它。但是我不想每次开始一个新项目时都将 java 文件复制到我的项目中。 我知道我可以在 Visual Studio 和
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我有 3 个组件的 Twig 文件: 文件 1: {# content-here #} 文件 2: {{ title-here }} {# content-here #}
我得到了 mod_ldap.c 和 mod_authnz_ldap.c 文件。我需要使用 Linux 命令的 mod_ldap.so 和 mod_authnz_ldap.so 文件。 最佳答案 从 c
我想使用PIE在我的项目中使用 IE7。 但是我不明白的是,我只能在网络服务器上使用 .htc 文件吗? 我可以在没有网络服务器的情况下通过浏览器加载的本地页面中使用它吗? 我在 PIE 的文档中看到
我在 CI 管道中考虑这一点,我应该首先构建和测试我的应用程序,结果应该是一个 docker 镜像。 我想知道使用构建环境在构建服务器上构建然后运行测试是否更常见。也许为此使用构建脚本。最后只需将 j
using namespace std; struct WebSites { string siteName; int rank; string getSiteName() {
我是 Linux 新手,目前正在尝试使用 ginkgo USB-CAN 接口(interface) 的 API 编程功能。为了使用 C++ 对 API 进行编程,他们提供了库文件,其中包含三个带有 .
我刚学C语言,在实现一个程序时遇到了问题将 test.txt 文件作为程序的输入。 test.txt 文件的内容是: 1 30 30 40 50 60 2 40 30 50 60 60 3 30 20
如何连接两个tcpdump文件,使一个流量在文件中出现一个接一个?具体来说,我想“乘以”一个 tcpdump 文件,这样所有的 session 将一个接一个地按顺序重复几次。 最佳答案 mergeca
我有一个名为 input.MP4 的文件,它已损坏。它来自闭路电视摄像机。我什么都试过了,ffmpeg , VLC 转换,没有运气。但是,我使用了 mediainfo和 exiftool并提取以下信息
我想做什么? 我想提取 ISO 文件并编辑其中的文件,然后将其重新打包回 ISO 文件。 (正如你已经读过的) 我为什么要这样做? 我想开始修改 PSP ISO,为此我必须使用游戏资源、 Assets
给定一个 gzip 文件 Z,如果我将其解压缩为 Z',有什么办法可以重新压缩它以恢复完全相同的 gzip 文件 Z?在粗略阅读了 DEFLATE 格式后,我猜不会,因为任何给定的文件都可能在 DEF
我必须从数据库向我的邮件 ID 发送一封带有附件的邮件。 EXEC msdb.dbo.sp_send_dbmail @profile_name = 'Adventure Works Admin
我有一个大的 M4B 文件和一个 CUE 文件。我想将其拆分为多个 M4B 文件,或将其拆分为多个 MP3 文件(以前首选)。 我想在命令行中执行此操作(OS X,但如果需要可以使用 Linux),而
快速提问。我有一个没有实现文件的类的项目。 然后在 AppDelegate 我有: #import "AppDelegate.h" #import "SomeClass.h" @interface A
我是一名优秀的程序员,十分优秀!