Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/augustt198/java_bytecode
A Java class file parser
https://github.com/augustt198/java_bytecode
Last synced: about 2 months ago
JSON representation
A Java class file parser
- Host: GitHub
- URL: https://github.com/augustt198/java_bytecode
- Owner: augustt198
- License: mit
- Created: 2015-03-22T18:13:15.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-22T18:13:17.000Z (almost 10 years ago)
- Last Synced: 2023-08-02T15:35:23.833Z (over 1 year ago)
- Language: Ruby
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# JavaBytecode
A Java class file parser.
### Usage
A class file can be parsed by supplying any `IO` object to
`JavaBytecode::JavaClass.new`:```ruby
source_file = File.new('Test.class')
class_file = JavaBytecode::JavaClass.new(source_file)
```