在java中插入图片,怎么寻找当前所在路径?怎么建呐?需要建什么啊?
packagepkg;importjavax.swing.*;importjava.awt.*;publicclassTestImageIconextendsJFrame...
package pkg;
import javax.swing.*;
import java.awt.*;
public class TestImageIcon extends JFrame{
private ImageIcon usIcon = new ImageIcon("image/us.gif");
private ImageIcon myIcon = new ImageIcon("image/my.gif");
private ImageIcon frIcon = new ImageIcon("image/fr.gif");
private ImageIcon ukIcon = new ImageIcon("image/uk.gif");
public TestImageIcon(){
setLayout(new GridLayout(1,4,5,5));
add(new JLabel(usIcon));
add(new JLabel(myIcon));
add(new JButton(frIcon));
add(new JButton(ukIcon));
}
/** Main method */
public static void main(String[] args){
TestImageIcon frame = new TestImageIcon();
frame.setTitle("TestImageIcon");
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(200,200);
frame.setVisible(true);
}
} 展开
import javax.swing.*;
import java.awt.*;
public class TestImageIcon extends JFrame{
private ImageIcon usIcon = new ImageIcon("image/us.gif");
private ImageIcon myIcon = new ImageIcon("image/my.gif");
private ImageIcon frIcon = new ImageIcon("image/fr.gif");
private ImageIcon ukIcon = new ImageIcon("image/uk.gif");
public TestImageIcon(){
setLayout(new GridLayout(1,4,5,5));
add(new JLabel(usIcon));
add(new JLabel(myIcon));
add(new JButton(frIcon));
add(new JButton(ukIcon));
}
/** Main method */
public static void main(String[] args){
TestImageIcon frame = new TestImageIcon();
frame.setTitle("TestImageIcon");
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(200,200);
frame.setVisible(true);
}
} 展开
3个回答
展开全部
对的,就是相对于该工程所在文件夹路径,a/是进入工程工程目录的子目录a文件夹
当然也可以写成绝对路径,路径的首部是文件所在磁盘的盘符加冒号,像D:\Program Files\CNTV\CBox\CBox.exe,当然最好在'\'后面再加个'\'转义字符。
可由file.getAbsolutePath()获取文件绝对路径
当然也可以写成绝对路径,路径的首部是文件所在磁盘的盘符加冒号,像D:\Program Files\CNTV\CBox\CBox.exe,当然最好在'\'后面再加个'\'转义字符。
可由file.getAbsolutePath()获取文件绝对路径
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个图形界面方面我研究的比较少,不太懂,不好意思啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询