• Introduction to Java Programming - Chapter 8: Strings and Text I/OIntroduction to Java Programming - Chapter 8: Strings and Text I/O

    Write a class named ReplaceText that replaces a string in a text file with a new string. The filename and strings are passed as command-line arguments as follows: java ReplaceText sourceFile targetFile oldString newString For example, invoking java ReplaceText FormatString.java t.txt StringBuilder StringBuffer replaces all the occurrences of ...

    pdf52 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 645 | Lượt tải: 0

  • Introduction to Java Programming - Chapter 7: Objects and ClassesIntroduction to Java Programming - Chapter 7: Objects and Classes

    Creating Windows Using the JFrame Class Objective: Demonstrate using classes from the Java library. Use the JFrame class in the javax.swing package to create two frames; use the methods in the JFrame class to set the title, size and location of the frames and to display the frames.

    pdf58 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 626 | Lượt tải: 0

  • Introduction to Java Programming - Chapter 6: ArraysIntroduction to Java Programming - Chapter 6: Arrays

    Objective: write a program that calculates the total score for students in a class. Suppose the scores are stored in a threedimensional array named scores. The first index in scores refers to a student, the second refers to an exam, and the third refers to the part of the exam. Suppose there are 7 students, 5 exams, and each exam has two parts-...

    pdf40 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 815 | Lượt tải: 0

  • Introduction to Java Programming - Chapter 5: MethodsIntroduction to Java Programming - Chapter 5: Methods

    There are two ways to use classes from a package. • One way is to use the fully qualified name of the class. For example, the fully qualified name for JOptionPane is javax.swing.JOptionPane. For Format in the preceding example, it is com.prenhall.mypackage.Format. This is convenient if the class is used a few times in the program. • The other ...

    pdf37 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 651 | Lượt tải: 0

  • Giáo trình Internet - Phần 3: Thư điện tử - Internet Mail - Lê Anh NhậtGiáo trình Internet - Phần 3: Thư điện tử - Internet Mail - Lê Anh Nhật

    Xóa thư trong chương trình Mail Client  Để xóa thư không cần xem nữa trong hầu hết các chương trình Mail client bạn có thể nhấp chuột trên lá thư đó và nhấn nút Delete. Thư vừa xóa sẽ đưa vào trong Deleted Items folder, muốn xóa hẳn phải thực hiện xóa một lần nữa trong folder này Thực hành  Sử dụng email mail.tuyenquang.edu.vn.  Đăng kí...

    pdf16 trang | Chia sẻ: thucuc2301 | Ngày: 23/11/2020 | Lượt xem: 614 | Lượt tải: 0

  • Introduction to Java Programming - Chapter 4: LoopsIntroduction to Java Programming - Chapter 4: Loops

    Example: Displaying Prime Numbers Problem: Write a program that displays the first 50 prime numbers in five lines, each of which contains 10 numbers. An integer greater than 1 is prime if its only positive divisor is 1 or itself. For example, 2, 3, 5, and 7 are prime numbers, but 4, 6, 8, and 9 are not. Solution: The problem can be broken into...

    pdf17 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 690 | Lượt tải: 0

  • Giáo trình Internet - Phần 2: Công nghệ Internet - Lê Anh NhậtGiáo trình Internet - Phần 2: Công nghệ Internet - Lê Anh Nhật

    Hệ thống tên miền - DNS  DNS cũng được chia làm nhiều phần, mỗi phần cũng phân cách bằng dấu chấm. Một cách tổng quát Domain name có dạng: tên-host.tên-mức-hai.tên mức một (hostname.second-level.first-level)  Tên-mức-một: chỉ ra kiểu tổ chức hoặc quốc gia mà host nằm trong đó.  Tên-mức-hai: chỉ ra tên tổ chức làm chủ và điều hành mạng m...

    pdf26 trang | Chia sẻ: thucuc2301 | Ngày: 23/11/2020 | Lượt xem: 590 | Lượt tải: 0

  • Introduction to Java Programming - Chapter 3: Control StatementsIntroduction to Java Programming - Chapter 3: Control Statements

    Formatting Output Use the new JDK 1.5 printf statement. System.out.printf(format, items); Where format is a string that may consist of substrings and format specifiers. A format specifier specifies how an item should be displayed. An item may be a numeric value, character, boolean value, or a string. Each specifier begins with a percent sign

    pdf20 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 648 | Lượt tải: 0

  • Giáo trình Internet - Phần 1: Internet - Lê Anh NhậtGiáo trình Internet - Phần 1: Internet - Lê Anh Nhật

    Các dịch vị trên Internet  Di động.  Dịch vụ cung cấp domain name  Webhosting.  Dịch vụ thiết kế và xây dựng Website riêng trên miền Internet  Dịch vụ cơ sở dữ liệu.  Thanh toán điện tử.  Truy nhập từ xa Telnet  Dịch vụ truyền tệp - FTP.  Dịch vụ tìm kiếm dữ liệu - WAIS

    pdf15 trang | Chia sẻ: thucuc2301 | Ngày: 23/11/2020 | Lượt xem: 833 | Lượt tải: 0

  • Introduction to Java Programming - Chapter 2: Primitive Data Types and OperationsIntroduction to Java Programming - Chapter 2: Primitive Data Types and Operations

    Naming Conventions, cont.  Class names: – Capitalize the first letter of each word in the name. For example, the class name ComputeArea.  Constants: – Capitalize all letters in constants, and use underscores to connect words. For example, the constant PI and MAX_VALUE

    pdf55 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 650 | Lượt tải: 0