Android: Convert CSDB to Text File

Discussions about creating CAPI applications to run on Android devices
Forum rules
New release: CSPro 8.0
Post Reply
emdisala
Posts: 26
Joined: March 16th, 2021, 12:30 pm

Android: Convert CSDB to Text File

Post by emdisala »

Dear all,

Android: Convert CSDB to Text File

Seeking convenient method to convert csdb file to text file in android device, which can be use with same dictionary.

Many thanks

Disala
Gregory Martin
Posts: 1777
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Android: Convert CSDB to Text File

Post by Gregory Martin »

You would have to do this in a program where the dictionary is loaded as an external dictionary. Then, the easiest option would be to use the fileconcat function:
fileconcat(MY_DICT, "text-data.dat", "csprodb-data.csdb");
emdisala
Posts: 26
Joined: March 16th, 2021, 12:30 pm

Re: Android: Convert CSDB to Text File

Post by emdisala »

Dear Gregory Martin,

Nice, thank you very much, appreciated, that was good thinking.

Disala
Gregory Martin wrote: May 4th, 2021, 8:16 am You would have to do this in a program where the dictionary is loaded as an external dictionary. Then, the easiest option would be to use the fileconcat function:
fileconcat(MY_DICT, "text-data.dat", "csprodb-data.csdb");
Post Reply