{"id":23838304,"url":"https://github.com/shred/commons-pdb","last_synced_at":"2025-09-07T15:32:41.790Z","repository":{"id":57740696,"uuid":"111007663","full_name":"shred/commons-pdb","owner":"shred","description":"Read PalmOS PDB files with Java","archived":false,"fork":false,"pushed_at":"2019-01-26T17:14:00.000Z","size":37,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-25T19:49:52.388Z","etag":null,"topics":["java","library","palmos","pdb-files"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shred.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-LGPL.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-11-16T18:31:02.000Z","updated_at":"2024-02-17T09:52:40.000Z","dependencies_parsed_at":"2022-08-25T19:20:46.566Z","dependency_job_id":null,"html_url":"https://github.com/shred/commons-pdb","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shred%2Fcommons-pdb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shred%2Fcommons-pdb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shred%2Fcommons-pdb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shred%2Fcommons-pdb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shred","download_url":"https://codeload.github.com/shred/commons-pdb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232225362,"owners_count":18491372,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","library","palmos","pdb-files"],"created_at":"2025-01-02T16:53:59.647Z","updated_at":"2025-09-07T15:32:41.780Z","avatar_url":"https://github.com/shred.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# commons-pdb ![build status](https://shredzone.org/badge/commons-pdb.svg) ![maven central](https://shredzone.org/maven-central/org.shredzone.commons/commons-pdb/badge.svg)\n\nA Java library for reading PalmOS PDB database files.\n\n## Features\n\n* Lightweight, only requires Java 1.7 or higher, no other dependencies.\n* Android compatible, requires API level 19 (KitKat) or higher.\n* Available at [Maven Central](http://search.maven.org/#search|ga|1|a%3A%22commons-pdb%22)\n\nThis library offers converters for reading the contents of the most common PDB files:\n\n* Address book\n* Datebook\n* Todo-List\n* Memo\n* Notepad (except on Android)\n\nCustom converters can be added for other PDB files. Also, all PDB file contents can be read as raw byte arrays.\n\n## Example\n\nThis example reads a calendar PDB file, and converts the records to `ScheduleRecord` objects using a `ScheduleConverter`.\n\n```java\ntry (PdbFile pdb = new PdbFile(new File(\"calendar.pdb\")) {\n    PdbDatabase\u003cScheduleRecord, CategoryAppInfo\u003e database = pdb.readDatabase(new ScheduleConverter());\n\n    System.out.printf(\"Name: %s\\n\", database.getName());\n\n    List\u003cCategory\u003e cats = database.getAppInfo().getCategories();\n    for (int ix = 0; ix \u003c cats.size(); ix++) {\n        System.out.printf(\"Category %d: %s\\n\", ix, cats.get(ix));\n    }\n\n    for (ScheduleRecord entry : database.getRecords()) {\n        System.out.println(entry);\n    }\n}\n```\n\nSee the [online documentation](https://shredzone.org/maven/commons-pdb/) for API details.\n\nThere is also a [pdbconverter tool](http://pdbconverter.shredzone.org/) offering a GUI and a command line, for converting PDB files.\n\n## Contribute\n\n* Fork the [Source code at Codeberg](https://codeberg.org/shred/commons-pdb). Feel free to send pull requests.\n* Found a bug? [File a bug report](https://codeberg.org/shred/commons-pdb/issues).\n\n## License\n\n_commons-pdb_ is open source software. The source code is distributed under the terms of [GNU Lesser General Public License Version 3](http://www.gnu.org/licenses/lgpl-3.0.html).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshred%2Fcommons-pdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshred%2Fcommons-pdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshred%2Fcommons-pdb/lists"}