I dont understand the difference between binary data files from other programs and what my program produces. Let me start by example, this is what another programs data file is which is just a list of connections (note: all of it would not paste):
’ôýÃÉ8ý$Øâß¿Ã?
After declaring a binary write and writing my information to a file this is what I get:
Binary Writer ClassNumbers will appear nextÇ/
What gives? Why can I see the text in mine and not in the one above? Where can I find information about this? I've searched the net but all I find is tutorials on how to write the same code as my program produces.
I'm using Visual Studio 2005 Managed c++ to produce these results.
Binary?
Started by
Guest_NeedHelp_*
, Jun 24 2006 08:59 AM
4 replies to this topic
#1
Guest_NeedHelp_*
Posted 24 June 2006 - 08:59 AM
Guest_NeedHelp_*
|
|
|
#2
Posted 26 June 2006 - 11:11 AM
As I understand it each compiler will produce its own "binary" looking code. Java vs C++ will look different. I know in 2005 c++ the text in Binary mode is still legible. You will have to encrypt anything that you do not want the user to see or change.
#3
Posted 27 June 2006 - 12:49 PM
RobSoftware said:
As I understand it each compiler will produce its own "binary" looking code. Java vs C++ will look different. I know in 2005 c++ the text in Binary mode is still legible. You will have to encrypt anything that you do not want the user to see or change.
I don't know about each one producing its own binary but in VS.NET 2005 the text is very legible in binary. int, double, float, etc... isn't legible though.
Void
#4
Guest_NeedHelp_*
Posted 18 July 2006 - 04:57 PM
Guest_NeedHelp_*
So there is no way to hide text in binary unless I encrypt first?
#5
Posted 27 July 2006 - 11:59 AM
Are you doing a binary serialization of a class/structure?


Sign In
Create Account

Back to top










