WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: what is standard encoding in core?  (Read 1739 times)

Offline vinnie

  • Hero Member
  • *****
  • Posts: 1187
  • HandMace informatic works
what is standard encoding in core?
« on: May 08, 2012, 05: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-???

Offline AbNoRMiS

  • Hero Member
  • *****
  • Posts: 550
  • nothing can be impeccable in this imperfect world
    • @ß№®M!$
Re: what is standard encoding in core?
« Reply #1 on: May 08, 2012, 06:26:52 AM »
it seems that default lang is us
standard character encoding ISO-8859-1
Basic Design Concept © @ß№®M!$
please forgive my terrible english :)

Offline vinnie

  • Hero Member
  • *****
  • Posts: 1187
  • HandMace informatic works
Re: what is standard encoding in core?
« Reply #2 on: May 08, 2012, 05: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 ;)