User Profile

Collapse

Profile Sidebar

Collapse
doelf
doelf
Last Activity: Oct 13 '06, 02:21 AM
Joined: Oct 9 '06
Location: Switzerland
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • doelf
    replied to MS Sql Server Connections
    in Java
    You can get the answer and an example here:
    http://support.microso ft.com/kb/313100/EN-US/...
    See more | Go to post

    Leave a comment:


  • doelf
    replied to printing problem in linux
    in Java
    It's a library problem. See:

    http://forums.java.net/jive/thread.jspa?for umID=72&threadI D=6560&messageI D=49206...
    See more | Go to post

    Leave a comment:


  • doelf
    replied to Please help me soon
    in Java
    You have to be more concrete. Do you need a popup calendar to be used on Swing, JSP or JSF?...
    See more | Go to post

    Leave a comment:


  • doelf
    replied to Java and C#
    in Java
    Struts is a framework written in Java. If you use C#, use a corresponding framework in C#....
    See more | Go to post

    Leave a comment:


  • doelf
    replied to java packet capture
    in Java
    The error message is the answer. The version 48.0 is expected, but you deliver the version 49.0....
    See more | Go to post

    Leave a comment:


  • doelf
    replied to Is This Double Linked Function Correct??
    in Java
    Write a JUnit-Test and you know the answer. - But it would be better to write the JUnit-Test first, then implement the class and if the test is running fine the problem is terminated....
    See more | Go to post

    Leave a comment:


  • doelf
    replied to JDBC to SQL Server Connection Issues
    in Java
    I think the JDBC-Driver is not on the classpath (see error message). As long as you have no access to the com.microsoft.j dbc.sqlserver.S QLServerDriver class, the url is irrelevant....
    See more | Go to post

    Leave a comment:


  • doelf
    replied to Help me for Java Programming
    in Java
    That means that the program terminated normally.
    The program can be terminated by System.exit(sta tus). It's a convention that a non-zero status value is used for an abnormal termination....
    See more | Go to post

    Leave a comment:


  • Use a class Student, which implements the interface Serializable. The attributes are the details. The created objects for different students are added to the ArrayList object. Write the whole ArrayList object to a file (serialization) .
    Reading the file (deserializatio n) you get the ArrayList object, which contains the Student objects added before serialization.

    Code:
    package example.serialization;
    
    import java.io.Serializable;
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...