-tutxt switch does not produce unicode but simple ascii

0 votes
asked Apr 17, 2015 in Bug by anonymous

Hello,

Tried the simple uml file below with the -tutxt switch. It produces an ascii file, not a unicode one. Tried -utxt also but no luck.

$ java -jar plantuml.jar -version
PlantUML version 8022 (Tue Apr 07 19:54:02 CEST 2015)
(GPL source distribution)
OpenJDK Runtime Environment
OpenJDK 64-Bit Server VM
1.7.0_65-b32
Linux

The environment variable GRAPHVIZ_DOT has not been set
Dot executable is /usr/bin/dot
Dot version: dot - graphviz version 2.38.0 (20140413.2041)
Installation seems OK. File generation OK
$ java -version
java version "1.7.0_65"
OpenJDK Runtime Environment (IcedTea 2.5.3) (7u71-2.5.3-0ubuntu1)
OpenJDK 64-Bit Server VM (build 24.65-b04, mixed mode)
$ cat test.uml
@startuml
class Model {
-map<string, data>
+operator[]
}
@enduml
$ java -jar plantuml.jar test.uml -tutxt
$ cat test.utxt
,------------------.
|Model             |
|------------------|
|-map<string, data>|
|+operator[]       |
|------------------|
`------------------'
$ file test.utxt
test.utxt: ASCII text

 

1 Answer

0 votes
answered Nov 17 by The-Lu (74,900 points)

Hello A.,

Good things come to those who wait... wink

FYI that is now fixed and implemented on v1.2024.8:

- Thanks PlantUML team for your work.

Ref.:

Regards,
Th.
...