The main computing facility that you will be using is located in room 1.02.04SB. Your recitation will meet in this room. The room will also be open with tutors available at other times schedule . We will mainly run Java under windows XP. You have a Unix account so that you can have a web page for the class and email. You can also work on projects on your home PC or you may use the computers in one of the Student Computing Facilities (1.03.06MS, 2.01.20BB or 2.400FS).
Project Name(Package name): hellolibrarypkg
New Class Name: HelloLibrary
package hellolibrarypkg; // JBuilder adds this
import java.util.*;
// This library has the Date class
/**
* Title: Hello
Library
* Description: Writing a simple program using a Java
library.
* Copyright: Copyright (c) 2001
* Company: CS 1711
* @author j. Doe
* @version 1.0
*/
public class HelloLibrary {
public HelloLibrary() {
}
public static void main(String[] args) {
Date todaysDate = new Date(); // Create
a new Date object called todaysDate
System.out.println("Hello world, today is
" + todaysDate);
}
}
Follow the pattern you used to create your HelloWorld project as described in the http://www.cs.utsa.edu/~javalab/lab/gettingStartedJbuilder.html handout.