基于Java实现拼图小游戏中怎么插入照片

问题遇到的现象和发生背景 程序运行之后没有产生图片的页面
用代码块功能插入代码,请勿粘贴截图 public void initImage()
{
    //ImageIcon icon1 = new ImageIcon("/Users/huangyuxin/Java2/src/AAvvvvv/image/1.JPG");
    //JLabel jLabel1 = new JLabel(icon1);
    //jLabel1.setBounds(60,60,60,60);
    //this.getContentPane().add(jLabel1);
    //this.setVisible(true);


    this.getContentPane().removeAll();//清空之前的图片
    int n = 1;
    for(int i = 0; i < 4; i++)
    {
        for(int j = 0; j < 4; j++)
        {
            ImageIcon imag = new ImageIcon("/Users/n/Java2/src/A/image/"+n+".JPG");
            //JLabel jLabel = new JLabel(new ImageIcon(""));
            JLabel jLabel1 = new JLabel(imag);
            jLabel1.setBounds(120 * j, 120 * i+1,120,120);
            //jLabel1.setBorder(new BevelBorder(1));//将图片设置成嵌入式
            this.getContentPane().add(jLabel1);
            n++;
        }
    }




}
运行结果及报错内容 无错误
我的解答思路和尝试过的方法
我想要达到的结果 实现拼图效果

先加载一个图片看看,是否是图片路径的问题