Python Programming with the Java Class Libraries: A Tutorial for Building Web and Enterprise Applications with Jython

Python Programming with the Java Class Libraries: A Tutorial for Building Web and Enterprise Applications with Jython
Language: EnglishFormat: CHM
Author: Richard HightowerFile size: 1.77 MB
Publisher: Addison Wesley ProfessionalPublish date: June 2002
IT Books in Amazon

Characterized by ease of use, richness of expression, and concise syntax, Python has remained a premier programming language for more than a decade, and is used by novices and professionals alike. In particular, its close relationship to Java makes the two languages, when used in combination, ideal for Web and distributed enterprise application development.

This tutorial begins with coverage of some of the basics of Python programming. Using plenty of skill-building exercises and interactive programming sessions, this book will help those new to programming develop an understanding of concepts and practical techniques. For experienced programmers, the book demonstrates Python's breadth of capabilities and shows the ways that Python interfaces with Java APIs for professional application development.

Python Programming with the Java Class Libraries: A Tutorial for Building Web and Enterprise Applications with Jython covers important topics such as:

* Fundamental programming concepts, including statements, expressions, interpreters, and compilers

* Python basics, including operators, string formatting, namespaces, classes, errors, and exceptions

* Object-oriented programming concepts

* File input/output

* Python's intrinsic functions

* Formatting, parsing, and manipulating strings

* Interfacing with the Java APIs and working with Java Streams

* Using Python and Java Swing to create GUIs

* Working with SQL and JDBC

* Python and Java applets

In addition, the book contains instructions for downloading and installing the Python language and the Java Development Kit (JDK). Terminology, definitions, explanations, and numerous code samples make this book a useful learning experience.

Whether you are a sophisticated computer user new to programming or a serious application developer, Python Programming with the Java Class Libraries will give you insight into the power of Python and the know-how to put it to work.

Table of contents
  • Chapter 1. Jython Overview
    • Programming, Briefly
    • Learning Python First
    • Python the Language
    • Starting with Python
    • Basic Functions with Python
    • Python as a Main Program
    • The Fast Track
    • The Power of Python
    • Where Do You Go from Here?
    • Summary
  • Chapter 2. Statements and Expressions
    • Comments and Document Strings
    • Statements
    • Expressions
    • Variables
    • Data Types
    • Python Collection Types
    • Advanced Topic: Determining Types at Runtime
    • Literals
    • Summary
  • Chapter 3. Operators and String Formatting
    • Operators
    • Formatting Strings—Modulus
    • Summary
  • Chapter 4. Control Flow
    • The if Statement
    • The while Statement
    • The for Statement
    • Putting It All Together
    • Summary
  • Chapter 5. Organizing Your Code
    • Evolution of a Programmer
    • Code Blocks and Namespaces
    • Modules
    • Functions and Methods
    • Putting Things Together
    • Classes
    • Packages
    • Globals and the Global Statement
    • Summary
  • Chapter 6. Object-Oriented Programming
    • What Is OOP?
    • Objects and Classes
    • Special Class Methods
    • Inheritance
    • Polymorphism
    • Summary
  • Chapter 7. Errors and Exceptions
    • Syntax and Sequence Errors
    • The Danger of Exceptions
    • The try Statement
    • The raise Statement
    • Classes and Instances as Exceptions
    • Getting the Most Out of Your Exceptions
    • Summary
  • Chapter 8. Working with Files
    • Simple File Operations
    • Common File Methods
    • Putting It All Together: The Address Book Example
    • The Full address3.py Code
    • Persisting Objects with pickle
    • pickle and the Address Book Application
    • Summary
  • Chapter 9. Built-In Functions
    • Conversion
    • Namespace: dir(), globals(), locals(), vars()
    • Type Checking: callable(), type()
    • Operations
    • Advanced Topic: Functional Programming
    • Advanced exec and eval
    • Summary
  • Chapter 10. Working with Strings
    • Conversion: atoi(), atof(), atol()
    • Case Change: capitalize(), capwords(), swapcases(), lower(), upper()
    • Finding: find(), rfind(), index(), rindex(), count(), replace()
    • Splitting and Joining: split(), splitfields(), join(), joinfields()
    • Stripping and Parsing: lstrip(), rstrip(), strip()
    • Adjusting Text: ljust(), rjust(), center(), zfill(), expandtabs()
    • Summary
  • Chapter 11. Interfacing with Java
    • Using the Java APIs
    • Java Types
    • Java Constructors
    • Java Arrays and jarray
    • Java Arrays and Methods
    • Bean Properties
    • Properties
    • Java Event Handling
    • Subclassing Java Classes
    • Advanced Topics
    • Summary
  • Chapter 12. Working with Java Streams
    • The Java Way of File Operations
    • Text Streams
    • Binary Streams: InputStream and OutputStream
    • DataInput and DataOutput
    • The File Class
    • The RandomAccessFile Class
    • The StreamTokenizer Class
    • Persisting Objects with Java Streams
    • Using Java Streams to Work with Memory
    • Summary
  • Chapter 13. JFC Fundamentals
    • Components and Containers
    • JFrame
    • Handling Events with JFrame
    • The Python Way of Handling Events
    • The Class Hierarchy for JFrame and Frame
    • JPanel
    • JLabel
    • JComponent
    • JButton
    • JTextField
    • JCheckBox
    • JRadioButton
    • List and JList
    • Summary
  • Chapter 14. First Swing Application, Layout, and Menus
    • Putting Things Together with Basic Java GUIs
    • Adding an Input Form for an Address Entry: The Prototype
    • Adding an Input Form for an Address Entry: First Cut
    • Adding a Main Window for the Address Book Application: Prototype
    • Adding a Main Window: First Cut
    • Adding a Toolbar and a Dialog for the Address Book Application
    • Menus
    • Layout Managers
    • A GridBagLayout Example
    • Putting Things Together: Adding GridBagLayout to the Address Application
    • Summary
  • Chapter 15. Graphics and Events
    • A Quick Graphics Tour
    • A Quick Tour of Common Events
    • Putting Things Together: A Drawing Program
    • The Complete Shapes and DrawShapes Modules
    • Summary
  • Chapter 16. Advanced Swing
    • JTable
    • Working with Table Models
    • Putting Things Together—Adding a Table Model to the Address Book Application
    • JTree
    • JToolBar and Actions
    • Summary
  • Chapter 17. SQL and JDBC
    • A Quick and Dirty JDBC Session
    • Programming with JDBC and SQL
    • SQL Data Definition Language
    • SQL Data Manipulation Language
    • Putting It All Together—Adding Database Support to the Address Book Application
    • Summary
  • Chapter 18. Applets
    • What Are Applets?
    • Working with Applets
    • Using an Applet as a Container
    • Transforming the Address Book Application into an Applet
    • Advanced Topic: AppletContext and AppletStub
    • Summary
  • Appendix A. Installing Jython on Windows
    • Installing Java Runtime
    • Installing the J2SE—Step by Step
    • Installing Jython
  • Appendix B. Installing Jython on Linux
    • Unpacking the Blackdown Package
    • Unpacking the Sun Package
    • Installing the Sun and Blackdown Distributions
    • Installing Older Distributions
    • Running Jython
  • Appendix C. The Power of Scripting
    • Scripting Versus Programming Languages
    • Java and Scripting
    • Integrating Scripting with Jython
    • Which Scripting Language to Choose
    • Hello World—The Programming Rosetta Stone
    • What Does It All Mean?
  • Appendix D. Java and Python: A Comparison
    • Python 101
    • A GUI Application
    • A Statistics Application
    • A String Parsing Example
    • Embedding Jython in Java
  • Appendix E. Regular Expressions
    • A Simple Example
    • Pattern Characteristics
    • Regular Expression Functions and Error and Flags Properties
    • re Object Methods and Properties
    • Match Object Methods and Properties
    • Metacharacters
    • Putting Things Together