My application uses Cardlayout with JPanel. On click of a button it should display a JScrollPane. It works fine with Java 1.5, But does not display anything in Java 1.6. Its just blank. I tried refresh, repaint, many more work around. Did not find anything used, as a deprecated item too.

Here is the code,

CardLayout cl = (CardLayout)(mainPanel.getLayout());
        if (preview) {
            preview = false;
            previewPanel.saveCaretPosition();
            expertFrame.setTitle(xxxxx + " - " + FRAME_TITLE_EXPERT);
            cl.show(mainPanel, EXPERT);
        } else {
            check = false;      // override check mode
            preview = true;
            previewPanel.refreshScreen();
            expertFrame.setTitle(xxxxxTitle + " - " + FRAME_TITLE_PREVIEW);
            cl.show(mainPanel, PREVIEW);

And the Refresh and init mothods:

void initScreen() {
        // set layout manager
        this.setLayout(new BorderLayout());
        // set panel size and title
        this.setPreferredSize(new Dimension(500, 250));
        // build text pane
        area = new JTextPane();
        area.setEditable(false);
        StyledDocument styledDoc = area.getStyledDocument();
        if (styledDoc instanceof AbstractDocument) {
            doc = (AbstractDocument)styledDoc;
            doc.setDocumentFilter(null);
        } else {
            System.out.println("Preview document isn't an AbstractDocument!");
            System.exit(1);
        }
    scrollArea = new JScrollPane(area, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    scrollArea.setPreferredSize(new Dimension(900, 600));
        add(scrollArea, BorderLayout.CENTER);
    } // initScreen

    /**
     * Refresh preview contents 
     */
    public void refreshScreen() {
        // get contents
        String contents = gui.model.previewxxxx();
        // split contents into array of strings
        String[] split = contents.split(LINE_SEPARATOR);
        // initialize attribute set
        SimpleAttributeSet[] attrs = new SimpleAttributeSet[split.length];
        // parse split contents and set attributes
        for (int i = 0; i < split.length; i++) {
            attrs[i] = new SimpleAttributeSet();
            if (split[i].indexOf("@invalid;") != -1) {
                split[i] = split[i].replaceAll("@invalid;", "");
                StyleConstants.setBold(attrs[i], true);
                StyleConstants.setForeground(attrs[i], Color.red);
            }
        }

        // remove old contents and add new contents to document
        try {
            doc.remove(0, doc.getLength());
            for (int i = 0; i < split.length; i ++) {
                doc.insertString(doc.getLength(), split[i] + LINE_SEPARATOR,
                        attrs[i]);
            }
        } catch (BadLocationException ble) {
            System.out.println("Couldn't insert preview contents!");
            System.exit(1);
        }

        // set caret position
        area.setCaretPosition(caretPosition);
    }

What may be the problem??

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.