Search:

Type: Posts; User: kaufenpreis

Search: Search took 0.25 seconds.

  1. Replies
    1
    Views
    806

    problem connecting in mssql

    hi guys i have a problem in connecting my jsp program in MSsql 2005
    i want to create a connection in my jsp program to MSsql database
    but theres an error of my work would you help me please in my...
  2. Replies
    12
    Views
    1,566

    Re: Anyone ever use this?

    BASIC is still around...
    Though old, BASIC is still around. Like most languages, it has gone through several versions, but the classic language constructs (like GOTO statements) are still...
  3. Replies
    8
    Views
    1,069

    Re: string handling

    1. String a = "";
    2. String b = null;

    Line 1 create a String object and assigns it the reference 'a'.
    Line 2 only creates a reference( 'b' ) to a String object. It will need to be assigned...
  4. Re: Reading a file line by line using the Scanner class

    This code reads the file line by line.
    public static void readFileByLine(String fileName) {
    try {
    File file = new File(fileName);
    Scanner scanner = new Scanner(file);
    while...
  5. Replies
    3
    Views
    1,799

    Re: Authenticating Java FX application

    Also I recommend you to read the next article - http://go4idm[dot]blogspot[dot]com/2009/08/authenticating-javafx-application-using[dot]html. I hope you'll find answer for your question.
  6. Replies
    1
    Views
    1,169

    Jade question

    I know this is Java forum, but Jade is related to Java. I am an artist trying to figure out Jade.

    Is there a way to somehow attach a java script widget to a button written in Jade and have the...
  7. Replies
    2
    Views
    1,480

    Java throwing error with Simple Program

    Can't figure this out at all. I'm getting this error "Static Error: Undefined class 'Variables3'" in Dr. Java when trying to run a file named "Variables3.java".

    Variables3.java contains this code:...
  8. Replies
    2
    Views
    1,439

    Re: Reading Web XML Document

    Check this also: Java: How to read and write xml files?

    It is the complete code that reads and writes XML files
  9. Replies
    3
    Views
    1,287

    Re: Java Math help please

    diagonal = √2*a by Pythagorean theorem.
  10. Replies
    0
    Views
    661

    Error when calling native method.

    Error when calling native method.

    I have an eclipse project with two classes. The class "SomeClass1" has a native method:
    Code:


    public class SomeClass1 {
    // Load the...
  11. Replies
    1
    Views
    620

    Hello world!

    Freinds, I'm Alex from Eastern europe. I am new to this java programming forums as well as java programming.
Results 1 to 11 of 11