Tiny Core Linux

Tiny Core Base => TCB Q&A Forum => Topic started by: vinnie on May 08, 2012, 08:07:39 AM

Title: what is standard encoding in core?
Post by: vinnie on May 08, 2012, 08:07:39 AM
The problem arises because I want to understand that encodes  java compiler assumes referringo to the system default (without lang bootcode)
Code: [Select]
tc@box:~$ locale
LANG=C
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=

the standard encoding is ISO-???
Title: Re: what is standard encoding in core?
Post by: AbNoRMiS on May 08, 2012, 09:26:52 AM
it seems that default lang is us
standard character encoding ISO-8859-1
Title: Re: what is standard encoding in core?
Post by: vinnie on May 08, 2012, 08:38:27 PM
However I always use the -encoding parameter to compile with javac, even converting the source in that format.
There must be some other problem below.
Thanks Abno ;)