wie macht man da ein programm draus? - Druckversion +- net-board.net Archiv (https://net-board.net) +-- Forum: Deine eigene Homepage (https://net-board.net/forumdisplay.php?fid=26) +--- Forum: Scriptsprachen (+Datenbanksysteme) (https://net-board.net/forumdisplay.php?fid=19) +--- Thema: wie macht man da ein programm draus? (/showthread.php?tid=4086) |
wie macht man da ein programm draus? - marlem - 14.05.2004 hi leute, wie macht man hier draus ein programm mit jframe? try { String url = "http://java.sun.com";; JEditorPane editorPane = new JEditorPane(url); editorPane.setEditable(false); JFrame frame = new JFrame(); frame.getContentPane().add(editorPane, BorderLayout.CENTER); frame.setSize(width, height); frame.setVisible(true); } catch (IOException e) { } hier ist die quelle: http://javaalmanac.com/egs/javax.swing.text/ep_ShowHTML.html - codethief - 06.06.2004 Das ist doch schon ein JFrame? Und das sollte doch auch angezeigt werden, oder etwa nicht? :hmmm: - marlem - 06.06.2004 ist schon etwas lange her! aber ich glaube einfach in eine main-methode stecken klappte nicht! bist du gut in java? |