The data-conversion tag has no wiki summary.
25
votes
7answers
23k views
Convert 4 bytes to int
I'm reading a binary file like this:
InputStream in = new FileInputStream( file );
byte[] buffer = new byte[1024];
while( ( in.read(buffer ) > -1 ) {
int a = // ???
}
What I want to do it ...
33
votes
16answers
27k views
Converting CSV File to XML in Java
Is there an existing application or library in Java which will allow me to convert a CSV data file to XML file?
The XML tags would be provided through possibly the first row containing column ...
8
votes
5answers
2k views
Matching records based on Person Name
Are there any tools or methods that can be used for matching by a person's name between two different data sources?
The systems have no other common information and the names have been entered ...
1
vote
2answers
2k views
Excel to various JSON objects
I have this Excel table:
country year 1 2 3 4
Netherlands 1970 3603 4330 5080 5820
Netherlands 1971 3436 4165 4929 5693
Netherlands 1972 3384 ...
2
votes
3answers
577 views
Why am I getting a “[SQL0802] Data conversion of data mapping error” exception?
I am not very familiar with iseries/DB2. However, I work on a website that uses it as its primary database.
A new column was recently added to an existing table. When I view it via AS400, I see the ...
0
votes
3answers
4k views
DateTime Conversion and Parsing DateTime.Now.ToString(“MM/dd/yyyy hh:mm:ss.fff”)
I store some DateTime in a CSV log with:
DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss.fff")
When I try to read it I found something like:
"05/15/2012 10:09:28.650"
The problem is when I try to ...
5
votes
2answers
2k views
Convert Latitude and Longitude to point in 3D space
I need to convert latitude and longitude values to a point in the 3-dimensional space. I've been trying this for about 2 hours now, but I do not get the correct results.
The Equirectangular ...
2
votes
2answers
2k views
How to convert letters with accents, umlauts, etc to their ASCII counterparts in Perl?
I'm writing a program that works with documents in Perl and a lot of the documents have characters such as ä, ö, ü, é, etc (both capital and lowercase). I'd like to replace them with ASCII ...
2
votes
4answers
384 views
Fast integer to decimal conversion
Given an (unsigned) integer, what is the generally fastest way to convert it into a string that contains its decimal representation?
The naïve way of doing that is repeatedly dividing by 10, ...
0
votes
3answers
674 views
Problem encoding wav into ogg vorbis
I have an MFC application. I have audio data stored in wav format. My question is, how can I encode an array of those bytes into an ogg vorbis format?
I found an example:
...
1
vote
1answer
2k views
How to convert Apache Derby database to MySQL
I would like to convert an existing Derby database to MySQL.
1
vote
3answers
2k views
c++ server htons to java ntohs client conversion
I am creating a small TFTP client
server app where server is developed
using c++ and client using java.
Here i am sending "block count" value
using htons conversion.
But i am not able to convert ...
0
votes
2answers
270 views
Appengine conversion Api (java)
I want to convert pdfs to image files within appengine. Ideally I would upload the pdf as a blob and store both the pdf and an image of the pdf. The conversion could also be done at a different time ...
0
votes
3answers
237 views
Tricky situation involving conversion functions?
C++
I have run into this situation i find really tricky. Well there are 2 classes: time12 and time24 with maintain time on the 12 and 24 hr basis respectively. Both of them are supposed to have ...