I have hastable htmlcontent is html string of urlstring . I want to write hastable into a .text file .
Can you suget me a sulution ?
|
feedback
|
|
For text representation, I would recommend picking a few characters that are very unlikely to occur in your strings, then outputting a CSV format file with those characters as separators, quotes, terminators, and escapes. Essentially, each row (as designated by the terminator, since otherwise there might be line-ending characters in either string) would have as the first CSV "field" the key of an entry in the hashtable, as the second field, the value for it. A simpler approach along the same lines would be to designate one arbitrary character, say the backslash | |||
|
feedback
|
|
How about one row for each entry, and two strings separated by a comma? Sort of like:
keep the quotes and you can write out keys that refer to null entries too, like
To actually produce the table, you might want to use code similar to:
| |||||||||
feedback
|
|
For the I/O part, you can use a If you have a specific format, you'd have to explain it, but otherwise a simple By the way, if you don't need the Related questionsHere's a simple example of putting things together, but omitting a robust
Running this on my machine generates a
As a bonus, you can use the first declaration and initialization of See also
| |||||||
feedback
|
|
You can try
This stores the hashtable (or any Map) as a properties file. You can use the Properties class to load the data back in again. | |||
|
feedback
|
| |||||
feedback
|
|
Since you don't have any requirements to the file format, I would not create a custom one. Just use something standard. I would recommend use json for that! Alternatives include xml and csv but I think that json is the best option here. Csv doesn't handle complex types like having a list in one of the keys of your map and xml can be quite complex to encode/decode. Using json-simple as example:
and then just save the string to your file (what is not specific of your domain either using Apache Commons IO):
To read the file:
You can use other json library as well but I think this one fits your need. | |||||
feedback
|