The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
43 views

Avoiding duplication in generating an id

The method generateId allocate ids to students,the method storeStudent is called by the method readData which reads data, the StudentId field in the data are all set to unknown so the method ...
0
votes
2answers
75 views

reducing duplication of code in inheritance

The method reads the data for the First class and second Class using scanner and then it stores them in the ArrayList the tow class. First and Second are inherited From Main Class. The problem I have ...
0
votes
2answers
77 views

Easiest way to read a txt file(with char and numbers) into a numerical array/matrix in MATLAB?

really frustrated with this one problem. Basically there is a txt file that has lines of code, code being a mixture of letters and numbers (of different length) WITHOUT commas and spaces in between ...
2
votes
1answer
239 views

Reading a json file from sdcard returns - null pointer exception

I searched all through the related threads and i was not successful , any related answers are welcomed . I have a JSON data as a .json file in SDCard inside the .NewFolder folder , i want to read the ...
2
votes
1answer
113 views

Greater efficienty for data reception through serial port in Java

Here is the code snippet Here i am initiating an Action Listener try { port_seleted.addEventListener(this); } catch (TooManyListenersException e) { System.out.println("too ...
-1
votes
1answer
110 views

How to read data from file into 2-D array? [duplicate]

Possible Duplicate: Reading characters from a text file and storing in a 2D array I wish to know how one can read data from a txt file, into a 2-d array. The requirements are:- 1. the first ...
1
vote
0answers
74 views

Reading the “me” contact card

Starting with some API, Google decided to add a "me" contact, describing info of the device's owner. How do you read the info of this contact? Is it even possible? And from which API can I assume it ...
0
votes
1answer
158 views

How to use portAudio to read audio data output from sound card?

I was wondering if it is possible to read data that is going from the sound card to the speakers with the PortAudio API. After looking through the documentation, I found an example ...
0
votes
0answers
100 views

Android: Reading raw data file with an asynctask

I currently need to read a lot of lines of data organized this way: > *Name *IndexNumber *LocationA *LocationB *LocationC > > > Barrel 4315124 2 3 43 > > car 414124 2 4 41 ...
1
vote
1answer
852 views

How Load Excel File With Password In C#

I Work On C# Project I Use Below Code For Import XLS Or XLSX File On DataSet. public static DataSet ImportExcelXLS(string FileName, bool hasHeaders) { string HDR = hasHeaders ? ...
3
votes
4answers
236 views

c++ use ifstream from memory

I have this question: I 've some code that uses ifstream to read some data from a file and everything works. Now I wish, without modifying some code, read this data from a memory, actually I have a ...
0
votes
3answers
204 views

How to input data into SQL Server for first time start of C# application

I created a C# program using SQL Server 2008 Express. There is some data that must exist in the database table initially, for the C# application to run correctly. I would like to transfer this data ...
1
vote
1answer
245 views

cursor.moveToFirst seems to be skipped

Im new to java and just tried to make a database. I managed to make a db and all but when i want to read the values it seems to get an error. This is my code for my settings activity (which asks for ...
0
votes
0answers
15 views

load all the data then Read data from sqlite database

Do you think its working? My app doesn't to show the data, just read and search for a data. @Override public void onStart() { super.onStart(); LoadGrid(); } ...
0
votes
0answers
33 views

How to run method after webcontent change

I'm working on basic windows application which reads data from website. And now I've got problem, becouse I don't know how can I automatically run method which download data after changing web ...
4
votes
4answers
4k views

How to read in numbers with a comma as decimal separator?

I have a series of CSV files where numbers are formatted in the european style using commas instead of decimal points, i.e. 0,5 instead of 0.5. There are too many of these files to edit them before ...
2
votes
4answers
3k views

In R how do I read a CSV file line by line and have the contents recognised as the correct data type?

I want to read in a CSV File whose first line is the variable names and subsequent lines are the contents of those variables. Some of the variables are numeric and some of them are text and some are ...
105
votes
6answers
17k views

Quickly reading very large tables as dataframes in R

I have very large tables that I would like to load as a dataframes in R. read.table() has a lot of convenient features, but it seems like there is a lot of logic in the implementation that would slow ...