473,395 Members | 1,456 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

StreamWriter Adds FFFE at the start of the file with Unicode Encoding!!

Hi , all
I'm trying to write unicode to a file for another app (not developed with
vs2003) to read it. I used StreamWriter with unicode encoding.but I was
surprised that the streamwriter adds FFFE to the start of the file,which
stopes the other app from reading it!!
any idea how to stope it frome doing that,do I have to use another class
#####writer that supports unicode?

help me Please!
Thanks
majed
I did some code with diferent encoding and here is the result:
UTF7 48656C6C6F2B4143454149512D0D0A
Hello+ACEAIQ-..
DEFAULT 48656C6C6F21210D0A
Hello!!..
ASCII 48656C6C6F21210D0A
Hello!!..
BIGENDIANUNICODE FEFF00480065006C006C006F00210021000D000A
....H.e.l.l.o.!.!....
UNICODE FFFE480065006C006C006F00210021000D000A00
...H.e.l.l.o.!.!.....
UTF8 EFBBBF48656C6C6F21210D0A
....Hello!!..

and here is the code

Imports System

Imports System.Text

Imports System.IO

Class filestream

Public Shared Sub main()

Dim ASCIIStream As New StreamWriter("ASCIIStream.txt", False,
System.Text.Encoding.ASCII)

Dim BigEndianUnicodeStream As New StreamWriter("BigEndianUnicodeStream.txt",
False, System.Text.Encoding.BigEndianUnicode)

Dim UnicodeStream As New StreamWriter("UnicodeStream.txt", False,
System.Text.Encoding.Unicode)

Dim DefaultStream As New StreamWriter("DefaultStream.txt", False,
System.Text.Encoding.Default)

Dim UTF7Stream As New StreamWriter("UTF7Stream.txt", False,
System.Text.Encoding.UTF7)

Dim UTF8Stream As New StreamWriter("UTF8Stream.txt", False,
System.Text.Encoding.UTF8)

ASCIIStream.WriteLine("Hello!!")

ASCIIStream.Close()

ASCIIStream = Nothing

BigEndianUnicodeStream.WriteLine("Hello!!")

BigEndianUnicodeStream.Close()

BigEndianUnicodeStream = Nothing

UnicodeStream.WriteLine("Hello!!")

UnicodeStream.Close()

UnicodeStream = Nothing

DefaultStream.WriteLine("Hello!!")

DefaultStream.Close()

DefaultStream = Nothing

UTF7Stream.WriteLine("Hello!!")

UTF7Stream.Close()

UTF7Stream = Nothing

UTF8Stream.WriteLine("Hello!!")

UTF8Stream.Close()

UTF8Stream = Nothing

Console.WriteLine ("Done!)

End Sub

End Class
Jul 21 '05 #1
4 2436
Majed,
Sounds like a bug in your other app!

FFFE is the byte order mark of Unicode, it signifies to Unicode that the
bytes are little endian. While FEFF signifies to Unicode that the bytes are
big endian!

Notice that in your samples, FEFF is Big Endian
BIGENDIANUNICODE FEFF00480065006C006C006F00210021000D000A
...H.e.l.l.o.!.!....
, while FFFE is little endian: UNICODE FFFE480065006C006C006F00210021000D000A00
..H.e.l.l.o.!.!.....
You can prevent the byte order mark from being written by creating a new
UnicodeEncoding object that you pass as the Encoding parameter of the
STreamWriter constructor.

Something like(untested):

' little endian, no byte order marks
Dim encoding As New UnicodeEncoding(False, False)

Dim stream as FileStream
Dim writer As New StreamWriter(stream, encoding)

Of course you will need to be certain that you other app does not have an
issue with little endian verses big endian Unicode characters.

Hope this helps
Jay

"Majed" <am******@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl... Hi , all
I'm trying to write unicode to a file for another app (not developed with
vs2003) to read it. I used StreamWriter with unicode encoding.but I was
surprised that the streamwriter adds FFFE to the start of the file,which
stopes the other app from reading it!!
any idea how to stope it frome doing that,do I have to use another class
#####writer that supports unicode?

help me Please!
Thanks
majed
I did some code with diferent encoding and here is the result:
UTF7 48656C6C6F2B4143454149512D0D0A
Hello+ACEAIQ-..
DEFAULT 48656C6C6F21210D0A
Hello!!..
ASCII 48656C6C6F21210D0A
Hello!!..
BIGENDIANUNICODE FEFF00480065006C006C006F00210021000D000A
...H.e.l.l.o.!.!....
UNICODE FFFE480065006C006C006F00210021000D000A00
..H.e.l.l.o.!.!.....
UTF8 EFBBBF48656C6C6F21210D0A
...Hello!!..

and here is the code

Imports System

Imports System.Text

Imports System.IO

Class filestream

Public Shared Sub main()

Dim ASCIIStream As New StreamWriter("ASCIIStream.txt", False,
System.Text.Encoding.ASCII)

Dim BigEndianUnicodeStream As New StreamWriter("BigEndianUnicodeStream.txt", False, System.Text.Encoding.BigEndianUnicode)

Dim UnicodeStream As New StreamWriter("UnicodeStream.txt", False,
System.Text.Encoding.Unicode)

Dim DefaultStream As New StreamWriter("DefaultStream.txt", False,
System.Text.Encoding.Default)

Dim UTF7Stream As New StreamWriter("UTF7Stream.txt", False,
System.Text.Encoding.UTF7)

Dim UTF8Stream As New StreamWriter("UTF8Stream.txt", False,
System.Text.Encoding.UTF8)

ASCIIStream.WriteLine("Hello!!")

ASCIIStream.Close()

ASCIIStream = Nothing

BigEndianUnicodeStream.WriteLine("Hello!!")

BigEndianUnicodeStream.Close()

BigEndianUnicodeStream = Nothing

UnicodeStream.WriteLine("Hello!!")

UnicodeStream.Close()

UnicodeStream = Nothing

DefaultStream.WriteLine("Hello!!")

DefaultStream.Close()

DefaultStream = Nothing

UTF7Stream.WriteLine("Hello!!")

UTF7Stream.Close()

UTF7Stream = Nothing

UTF8Stream.WriteLine("Hello!!")

UTF8Stream.Close()

UTF8Stream = Nothing

Console.WriteLine ("Done!)

End Sub

End Class

Jul 21 '05 #2
hi jay
the other app is Ntbackup which saves its backup files list in unicode
without FFFE at the start of the file. any idea how can I remove it from the
file.
TIA
"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:ea*************@TK2MSFTNGP10.phx.gbl...
Majed,
Sounds like a bug in your other app!

FFFE is the byte order mark of Unicode, it signifies to Unicode that the
bytes are little endian. While FEFF signifies to Unicode that the bytes are big endian!

Notice that in your samples, FEFF is Big Endian
BIGENDIANUNICODE FEFF00480065006C006C006F00210021000D000A
...H.e.l.l.o.!.!....


, while FFFE is little endian:

Jul 21 '05 #3
Majed,
any idea how can I remove it from the
file. I take it you did not read my response! As I indicated in my response how
you remove it from the file!

Hope this helps
Jay
"Majed" <am******@hotmail.com> wrote in message
news:e1**************@TK2MSFTNGP12.phx.gbl... hi jay
the other app is Ntbackup which saves its backup files list in unicode
without FFFE at the start of the file. any idea how can I remove it from the file.
TIA
"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:ea*************@TK2MSFTNGP10.phx.gbl...
Majed,
Sounds like a bug in your other app!

FFFE is the byte order mark of Unicode, it signifies to Unicode that the
bytes are little endian. While FEFF signifies to Unicode that the bytes

are
big endian!

Notice that in your samples, FEFF is Big Endian
BIGENDIANUNICODE FEFF00480065006C006C006F00210021000D000A
...H.e.l.l.o.!.!....


, while FFFE is little endian:


Jul 21 '05 #4
jay,
i'm sorry about that,I was late up because of this problem. yuor reply was
great and did solve it.
tahnks and sorry again.:)
majed
"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:us**************@TK2MSFTNGP09.phx.gbl...
Majed,
any idea how can I remove it from the
file.

I take it you did not read my response! As I indicated in my response how
you remove it from the file!

Hope this helps
Jay
"Majed" <am******@hotmail.com> wrote in message
news:e1**************@TK2MSFTNGP12.phx.gbl...
hi jay
the other app is Ntbackup which saves its backup files list in unicode
without FFFE at the start of the file. any idea how can I remove it from

the
file.
TIA
"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message news:ea*************@TK2MSFTNGP10.phx.gbl...
Majed,
Sounds like a bug in your other app!

FFFE is the byte order mark of Unicode, it signifies to Unicode that the bytes are little endian. While FEFF signifies to Unicode that the
bytes are
big endian!

Notice that in your samples, FEFF is Big Endian
> BIGENDIANUNICODE FEFF00480065006C006C006F00210021000D000A
> ...H.e.l.l.o.!.!....

, while FFFE is little endian:



Jul 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

30
by: aurora | last post by:
I have long find the Python default encoding of strict ASCII frustrating. For one thing I prefer to get garbage character than an exception. But the biggest issue is Unicode exception often pop up...
2
by: garykpdx | last post by:
Every time I think I understand unicode, I prove I don't. I created a variable in interactive mode like this: s = u'ä' where this character is the a-umlaut that worked alright. Then I encoded...
6
by: Tom | last post by:
Hi I read http://dotgnu.org/pnetlib-doc/System/Text/UnicodeEncoding.html#UnicodeEncoding.GetBytes%28System.String%29%20Method and here is my code: <code string c = "Hello, How are you today?";...
1
by: Majed | last post by:
Hi , all I'm trying to write unicode to a file for another app (not developed with vs2003) to read it. I used StreamWriter with unicode encoding.but I was surprised that the streamwriter adds FFFE...
1
by: MaTianyi | last post by:
the encoding of file that is output by the file.write() function is always None. and the encoding attribute of the File Object is readonly. f = open('abc.txt','w') print f.encoding how can...
0
by: Iwan Petrow | last post by:
Hi, I want every file, which I add to my solution to be save with unicode encoding. How could I set this? Also is it possible team foundation server to check the encoding and to allow for...
6
by: Franz Steinhaeusler | last post by:
Hello NG, a little longer question, I'm working on our project DrPython and try fix bugs in Linux, (on windows, it works very good now with latin-1 encoding). On Windows, it works good now,...
0
by: UvT | last post by:
Can anyone tell me how to create a text file with Unicode Encoding. In am using FileStream Finalfile = new FileStream("finalfile.txt", FileMode.Append, FileAccess.Write); Now this creates...
1
by: ujjwaltrivedi | last post by:
Hey guys, Can anyone tell me how to create a text file with Unicode Encoding. In am using FileStream Finalfile = new FileStream("finalfile.txt", FileMode.Append, FileAccess.Write); ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.