Swing Tutorial for Java version 1.4.2

Hi all, where the subject can be found?
Current tutorial for Swing that is present on site http://java.sun.com/docs/books/tutorial/uiswing/
is for Java 6 only.
I am particularly interested in filtering JTable.
Thanks in advance.

Here is a link to the 1.5 tutorial which I believe is the same as the 1.4.2 tutorial:
https://www.cs.auckland.ac.nz/references/java/java1.5/tutorial/uiswing/TOC.html

Similar Messages

  • JDeveloper - problems with Tutorial for Java EE Developers

    Hi,
    I am trying to start learning Oracle J2EE technologies, and I am using the Oracle "Tutorial for Java EE Developers (10.1.3.1.0)" listed in the Oracle Application Server 10g (10.1.3) page: http://www.oracle.com/technology/tech/java/oc4j/1013/how_to/index.html.
    I am having problems in chapter 2, at the creating EJB 3.0 Persistence Entities stage, when using the Create Entities from Tables Wizard. Basically, when I select all the tables from the SRDEMO schema and attempt to create the Java classes, only the first table objects are created - ExpertiseAreas.java and ExpertiseAreasPK.java. I do not get any error messages, so I am not sure why the other table objects are not created.
    If I then use the Wizard to select tables individually, the objects are created. However, they appear to be missing some details - specifically the @OneToMany annotation.
    Has anyone encountered this same issue, or are there any known issues with this tutorial.
    I am using version 10.1.3.4 of JDeveloper, on a 10g (10.2) XE database. I installed the version of JDeveloper without JDK included. I have a Sun Java EE 5 SDK Udate 5 (JDK 6u7) install of JDK.
    Thanks,
    Fraser

    Please refer
    http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_ejb_30/ejb_30.htm
    http://www.oracle.com/technology/tech/java/oc4j/ejb3/howtos/howtoejb30mappingannotations/doc/how-to-ejb30-mapping-annotations.html#onetomany

  • XML Parser for Java version 2.0.2.9

    I can no longer find the XML parser for Java (version 2.0.2.9) for Sun Solaris and Oracle version 8.1.7.3. This would be the file xmlparserv2.jar for parser version 2.0.2.9
    This file support the latest Oracle Applications work flow version and so is necessary but does not seem to be available. All notes on Metalink point to Techweb.
    Thanks for your help. -Erik Stromholt

    This is covered by patch for bug 2199206. Thanks

  • GOOD tutorial for java?

    Hi, I am looking for a good tutorial for java. I cant understand my teacher's lectures, because they are always presented as a slide show and she just reads the slides in a monotone voice. (Not to mention her thick asian accent). So any one?
    *Note=A good tutorial is the one that shows coding examples, analysis of concepts etc
    Edited by: haraminoI on Mar 26, 2009 2:24 AM

    PhHein wrote:
    Start here:
    [Sun's basic Java tutorial|http://java.sun.com/docs/books/tutorial/]
    [Sun's New To Java Center|http://java.sun.com/learning/new2java/index.html]
    Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    jGuru
    A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch
    To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    [Yawmarks List|http://forums.devshed.com/java-help-9/resources-for-learning-java-249225.html]
    [The Java Developers Almanac|http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance]
    [http://javaalmanac.com|http://javaalmanac.com]
    Bruce Eckel's [Thinking in Java(Available online.)|http://mindview.net/Books/DownloadSites]
    Joshua Bloch's [Effective Java|http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683]
    Bert Bates and Kathy Sierra's [Head First Java|http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance]
    James Gosling's [The Java Programming Language|http://www.bookpool.com/sm/0321349806]
    Gosling is the creator of Java. It doesn't get much more authoritative than this.
    Joshua Bloch and Neal Gafter [Java Puzzlers.|http://www.javapuzzlers.com/]
    Hey thanks a lot ! :)

  • Easy swing question for Java friends

    Hi could somebody test this short application and tell me why the "DRAW LINE" button doesnt draw a line as I expected?
    thank you very much!
    Circuitos.java:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.awt.geom.*;
    public class Circuitos extends JApplet {
         protected JButton btnRect;
         protected Terreno terreno;
         private boolean inAnApplet = true;
         //Hack to avoid ugly message about system event access check.
         public Circuitos() {
              this(true);
         public Circuitos(boolean inAnApplet) {
            this.inAnApplet = inAnApplet;
              if (inAnApplet) {
                   getRootPane().putClientProperty("defeatSystemEventQueueCheck",Boolean.TRUE);
         public void init() {
              setContentPane(makeContentPane());
         public Container makeContentPane() {
              btnRect = new JButton("DRAW LINE");
          btnRect.addActionListener(new ActionListener() {
             public void actionPerformed(ActionEvent e) {
                terreno.pintarTramo();
              terreno = new Terreno();
              JPanel panel = new JPanel();
              panel.setLayout(new BorderLayout());
              panel.add("North",btnRect);
              panel.add("Center",terreno);
              return panel;
         public static void main(String[] args) {
            JFrame frame = new JFrame("Dise�o de Circuitos");
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              Circuitos applet = new Circuitos(false);
              frame.setContentPane(applet.makeContentPane());
              frame.pack();
              frame.setVisible(true);
    }Terreno.java:
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    public class Terreno extends JPanel {
         Graphics2D g2;
         public Terreno() {
              setBackground(Color.red);
              setPreferredSize(new Dimension(500,500));
         public void paintComponent(Graphics g) {
              super.paintComponent(g);
          g2 = (Graphics2D) g;
          g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);    
         public void pintarTramo () {     
              Point2D.Double start   = new Point2D.Double(250,250);
              Point2D.Double end     = new Point2D.Double(250,285);
              g2.draw(new Line2D.Double(start,end));            
    }

    I don't think the date I became a member has anything to do with it. Yes, I signed up a year ago to ask a question or two when I didn't know anything. It wasn't until recently have I started to use this forum again, only to try and help people as well as ask my questions. It took me a year to get to this point to where I can actually answer questions instead of just asking. So don't be silly and judge a person based on their profile.
    Secondly, I agree with you, the search utility is great. I use it all the time and usually I'll find my answers, but if I don't is it such a pain in the butt for you to see the same problem posted again?? I know how much you want people to use the resources available before wasting forum space with duplicate questions, but it's not going to happen. Some people are not as patient and you being a butt about it won't stop it.
    My point in general is that there are nice ways to help people and even rude ways, and your comments at times come across rude to me, even condescending. You have a lot of knowledge, therefore certain things seem trivial to you... but try to understand where some of the new people are coming from. The Swing tutorial is extremely helpful but if you don't understand the concept of programming or java that well... then it can be overwhelming and you don't know where to start. It's a huge tutorial and when people are stuck they just want an answer to their one question. Most figure it's easier to ask someone who already knows instead of reading an entire tutorial to get their answer.
    I've learned by both methods, by taking the time to research it myself and by asking a lot of questions. I have the time. Some don't. Please realize that not everyone is like you and they will continue to ask whether you like it or not. You have a choice, either help them or not.

  • ANN: XML Parser for Java Version 2.0.2.4

    Oracle announces the release of version 2.0.2.4 of the XML
    Parser for Java now available for free download on the Oracle
    Technology Network. This version features an integrated XSLT
    Processor that is compliant with the recently released W3C XSLT
    1.0 Proposed Recommendation.
    This parser includes the following new features from previous
    versions:
    * XSLT Extension Function support is now available
    * XSL Output has been enhanced to provide support for PrintWriter
    and OutputStream for XML Documents and Doc Fragments.
    This is the fourth maintenance release of v2 and includes a
    number of bug fixes. See the included readme.html for details.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

    This is covered by patch for bug 2199206. Thanks

  • Installation Error 1335 for java version 1.5 and 1.4 which i have tried

    i tried to install the latest java ie 1.5.0_04 or matter of fact other java versions also but the Installation of java is stopped by the Error code : 1335. following up with the Internal Error code : 2350.
    My system configuration is PIV 2.4 Ghz HT enabled. Intel 865GBF motherboard. 512Mb DDR ram. The problem is coming in the Data1.Cab.
    I even tried online installation. Eventually J2RE latest edition has installed from Java.com update. But the JDK 1.5 has the same problem even while downloading it from the Server online.
    Plz help me out in installing java in my computer. Its urgent for my project work.
    Email:[email protected]

    first of all do not post twice. you want help in this forum, one post is enoough. Two post doesnt help you at all.
    If you have problem installing java in your computer, try to search it on the net yourself first or look around the sun website.
    I'm not exactly sure where your problem is. I tried installing java 1.5.0 but i had few problems so im still using 1.4.2 version. if you are in a hurry try installing 1.4.2 and see whether you can install or not

  • Installation Error 1350 for java version 1.5 and 1.4 which i have tried

    i tried to install the latest java ie 1.5.0_04 or matter of fact other java versions also but the Installation of java is stopped by the Error code : 1335. following up with the Internal Error code : 2350.
    My system configuration is PIV 2.4 Ghz HT enabled. Intel 865GBF motherboard. 512Mb DDR ram. The problem is coming in the Data1.Cab.
    I even tried online installation. Eventually J2RE latest edition has installed from Java.com update. But the JDK 1.5 has the same problem even while downloading it from the Server online.
    Plz help me out in installing java in my computer. Its urgent for my project work.
    Email:[email protected]

    I also had problems when trying to install 1.5.0. I must have downloaded the offline installation file at least a dozen times and always got the 1335 error. I tried just about all the "recommended solutions", but none of them worked for me. I downloaded the file through WellGet, Firefox, and Internet Explorer. The installation file downloaded through WellGet and Firefox had identical results (error at the same point in the installation "timeline", but the file downloaded through Internet Explorer errored at bit later, which seemed weird, but I guess different software runs differently (obviously!)...
    During my lunchbreak at work, I downloaded the offline installation file (through Internet Explorer--my only option at work) and tried to install it when I got home. At first it seemed like it was going to work, as it didn't immediately pop up and say the Data1.cab was corrupted. However, at the end of the installation, I got a 1722 error, so I was disappointed.
    Then I decided to try something that people always recommend, but I never do--disabling everything possible when installing something. I rebooted, disabled everything I could in my Systray (anything that had an Exit option in the menu--I didn't go wild and stop everything in Task Manager though...), and lo and behold, the installation went through the SDK, started installing the JRE, and I held my breath, hoping I didn't get a 1722 at the end. No 1722. It finally installed! Yay!
    My theory is that either my firewall, anti-virus, or anti-spyware programs were messing up the downloading of the installation file. My workplace only has anti-virus and a hardware firewall. The fact that one download had a 1335 error and the other did not supports this theory. Or that maybe the file got corrupted by chance, but what are the odds I'd get a dozen corrupts in a dozen attempts? If one blames the source file at Sun as being corrupt, then no one would ever be able to install 1.5...
    Another strong theory is that I needed to shut off all programs before installing. I'm not going to risk uninstalling my good install to test out that theory on my "corrupted" installation file, though... This could explain a dozen corrupts in a dozen attempts. If so, the file is not corrupt, but something is amiss in the OS environment.
    It's feasible that someone could be stuck in a rut trying to download the same file through the same "pipeline" (firewall, anti-virus, anti-spyware) or stubbornly trying to bulldoze through an installation with their RAM chock full of unnecessary programs. It's too easy to just say "their" file is corrupt or Windows Installer is busted--I too was thinking along those lines...
    Anyway, if you consistently get a 1335 error (or maybe other kinds of errors), try shutting down all non-essential programs in the Systray (and maybe in the Startup and Task Manager--although that wasn't necessary for me). If that doesn't work, download the installation file from another computer/source or get ahold of an installation file that has proven to work. These two options are possibly the easiest to try. If they don't work, then one'd have resort to the more esoteric fix-its...
    On a side note, it was a bit scary having to shut off my firewall and anti-virus... I hope nothing got through in the two minutes they were down--I should have turned off my DSL modem...oh well.
    Now, I have to test out my 1.5 install to see if it is really okay. If it's not, I'll post back and complain...haha

  • SAP Recommendation for JAVA Version and BW 7.40 HANA.

    Dear All,
    give it right now some official recommendations for the JAVA Version if we migrate BW 7.01 to HANA 7.4.
    Regards
    Werner Schubert

    Hi Werner Schubert,
    Apart from what Michael has suggested, please see if the following link gives you some help.
    http://scn.sap.com/thread/3476708
    BR
    Prabhith

  • EWA for Java Version 7.0

    Hi,
    We are doing system monitoring for our ABAP & Java systems.
    As part of this, we were able to get EWA for all ABAP Systems, But the same is not working in JAVA.
    Is that possible to generate or configure EWA for Java Systems with version 7.0
    Please Advise. .
    Thanks
    Arun

    Hi Arun,
    Please note that the requirements for EWA for ABAP and JAVA systems are very different.
    To generate EWA reports for JAVA systems you have to install solution manager diagnostics.
    Please take a look at the notes below:
    976054   Availability of EWA for Non ABAP components
    1010428 End-to-End Diagnostics
    1274287 End-to-End Diagnostics SP18(EHP1)- SP19 - SP20 - SP21 - SP22
    If you have already done that, please check the troubleshootings guide attached to note 1332428 and the troubleshooting for workload analysis in service.sap.com/diagnostics -> Media Library.
    Hope this can help.

  • I'm looking for Java version j2sdk-1_4_2_16-windows-amd64

    Hello everyone.
    I need Java version j2sdk-1_4_2_16-windows-amd64
    On SUN site are only versions j2sdk-1_4_2_13-windows-amd64 and j2sdk-1_4_2_17-windows-amd64.
    Could enyone has this version?
    Thank you.

    hi,
    it was very hard to find  and you have to register at the sun website (should be free).
    https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=j2sdk-1.4.2_16-amd64-JPR@CDS-CDS_Developer
    PS: I don´t know why the link is crossed out. Should work anyway.
    I hope i could help.
    regards
    Tobias

  • Tutorial for Java as a language for Portal development!

    Hi All,
    I am basically a Java, J2EE developer. Now my Employers want me to start working on SAP EP 6.0 SP9. The SAP world is completely new to me.
    So
    Plz, guide me and provide reference for some good Tutorials or books for Java coding in SAP EP.
    Thanx in advance.
    Manish

    Hi Manish,
    start here http://help.sap.com/saphelp_nw04/helpdata/en/19/4554426dd13555e10000000a1550b0/frameset.htm and work through the material.
    The books offered by SAPPress for EP development are not recommandable.
    SP9 should be upgraded, it's really horrible old and buggy.
    Hope it helps
    Detlev
    PS: Wrong forum, you should have asked within EP Dev.
    PPS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • How to check for java version in unix?

    hi,can anyone tell me how to find the java versionin AIX unix?

    In addition to Annie's answer: if you mean to get it in your code, then do this:
    String version = System.getProperty("java.version");
    System.out.println("Java version: "+version);

  • Tutorial for 10g version 2

    I see there is a tutorial to get things started with version 9 of Discoverer, but i see none for 10g. Anyone know if there is a tutorial to get started with 10g rel 2?

    There is a link to the new tutorials via the Oracle By Example link from the Discoverer OTN home page:
    http://www.oracle.com/technology/obe/obe_bi/discoverer/discoverer_1012/index.html
    - Viewing Sales History Information Using OracleBI Discoverer Viewer
    - Analyzing Sales History Information Using OracleBI Discoverer Plus Relational
    - Creating Business Intelligence Reports Using OracleBI Discoverer Plus OLAP
    - Developing Sales History Business Area by Using OracleBI Discoverer Administrator
    - Exploring the New Features of OracleBI Discoverer
    - Creating a Business Intelligence Dashboard Using OracleBI Discovererer Portlets
    As for Education classes, there are current two BI10g classes available:
    OracleBI Discoverer Plus 10g: Analyze Relational and OLAP Data:
    http://education.oracle.com/pls/web_prod-plq-dad/show_desc.redirect?dc=D17427GC10&p_org_id=1001&lang=US&source_call=
    OracleBI Discoverer Administrator 10g: Develop an EUL
    http://education.oracle.com/pls/web_prod-plq-dad/show_desc.redirect?dc=D17442GC10&p_org_id=1001&lang=US&source_call=
    Hope this helps
    Business Intelligence Product Management Team
    Oracle Corporation

  • (NEED TUTORIAL)Please suggest a good and easy to follow tutorial for Java.

    Hello there,
    I wish to learn Java. Can some one please suggest me a good and easy to follow tutorial?
    I already have the Tutorial provided by sun.
    Thankyou,
    Satya.

    Satya,
    Please go to the New to Java Programming Center:
    /http://developer.java.sun.com/developer/onlineTraining/new2java/
    Just cut and past the link above into your browser.
    At the New to Java Center, you'll find lists of beginners materials, articles, tutorials, book recommendations based on your level of experience, a link to subscribe to the new montly email supplement, and more:-)
    A particularly good tutorial is Language Essentials:
    http://developer.java.sun.com/developer/onlineTraining/JavaIntro/
    Enjoy! Dana

Maybe you are looking for

  • Query to read XML from CLOB table column

    Hi I want an SQL to get the following information extract from a CLOB table column. MasterReport/sg:RptDef/sg:RptCell@RealDesc MasterReport/sg:RptDef/sg:RptCell@RealNum credits                              100 debits                              100

  • Mac to PC video chat connects only one way?

    This may be somewhat off topic for Mac users, but maybe someone in the community can still help me. I have a strange problem using iChat AV 3 on a MacBook and AIM 5.9 on a PC for video chat. I can readily establish video chat when the PC contacts the

  • Why java process crashes frequently

    We are facing an issue with our Oracle CMS server which is a java process. Content server instance is going down again and again within 5 minutes. We don't see any entries in the content server log files. However there is a crash dump of the java pro

  • How can I place calls with Facetime?

    I'm trying to use facetime to connect with my family that's spread around the country. I have an iMac and I purchased and downloaded the Mac OS X Snow Leopard update. I then downloaded the Facetime beta for the Mac and installed it on my computer. I

  • Serial number Lightroom 5 Amazon

    I bought Lightroom 5 through Amazon. Received no paperwork from Amazon with the boxed software, just the software itself. Trying to install it. Digits on the back of the box do not work as a serial number.  Have tried all  numbers, combos, letters fr