要求如下:

我的代码运行出来的结果是这样

我jp4部分的代码如下:
JLabel synopsisLabel=new JLabel("简介",JLabel.RIGHT);
JLabel degressLabel=new JLabel("学历",JLabel.RIGHT);
JList jlst1,jlst2;
JScrollPane jsp1,jsp2;
String[]arr3={"请输入简历 "};
jlst1=new JList(arr3);
jlst1.setVisibleRowCount(4);
jsp1=new JScrollPane(jlst1);
BorderLayout borderLayout=new BorderLayout();
jlst1.setBackground(Color.CYAN);
String[]arr4={"博士","硕士","本科","专科","高中","初中"};
jlst2=new JList(arr4);
jlst2.setVisibleRowCount(4);
jsp2=new JScrollPane(jlst2);
jlst2.setBackground(Color.CYAN);
请问如何将简介列表框的滚动窗格显示出来