libjdk is a comprehensive C++ implementation of the Java Development Kit (JDK), providing native C++ libraries that mirror the functionality of Java's core libraries and modules. While it provides Java-like APIs, it runs as native C++ code without requiring a Java Virtual Machine.
This project provides a complete C++ implementation of Java's desktop functionality, including:
- AWT Components: Abstract Window Toolkit for GUI components
- Swing Support: Lightweight GUI components
- Graphics2D: Advanced 2D graphics rendering
- Image Processing: Image loading, manipulation, and saving
- Font Rendering: Text rendering with various fonts
- Print Support: Printing functionality
- Accessibility: Accessibility features for GUI components
- Performance: Hardware-accelerated graphics rendering
- ✅ Windows Support: Native Windows desktop applications
- ✅ CMake Build System: Modern, portable build configuration
- ✅ Comprehensive Testing: Extensive test suite included
- ✅ OpenJDK Compatible: Based on OpenJDK 17.35
- ✅ GPL Licensed: Free software with Classpath exception
- java.base: Core Java functionality (required)
- java.prefs: User preferences (required)
- java.datatransfer: Data transfer operations (required)
- java.xml: XML processing (required)
- java.logging: Logging framework (required)
- jdk.httpserver: HTTP server (required)
java.desktop/
├── main/ # Main source code
│ ├── windows/ # Windows-specific code
│ │ ├── classes/ # Java class implementations
│ │ ├── include/ # Header files
│ │ └── native/ # Native implementations
├── test/ # Test suite
├── legal/ # Legal notices and licenses
└── CMakeLists.txt # Build configuration
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests for new functionality
- Ensure all tests pass
- Submit a pull request
This project is licensed under the GNU General Public License v2 with the Classpath exception, allowing linking with proprietary software. See the LICENSE file for details.
This project includes code from various open source projects. See the legal/ directory for detailed licensing information for each component.