/    Sign up×
Community /Pin to ProfileBookmark

loading a txt file

Below is the code that I use to load a txt file into my program:

[code]
FileInputStream fis = new FileInputStream(“test.txt”);
InputStreamReader isr = new InputStreamReader(fis);
BufferedReader br = new BufferedReader(isr);

List<String> list = new ArrayList<String>();
String data;
while ((data = br.readLine()) != null)
{
list.add(data);
}

for (int i = 0; i < list.size(); i++)
{
operationCode = (list.get(i) % 10000) / 100;
operand = list.get(i) % 100;
}
br.close();
[/code]

test.txt contains a number on each line.

However, I get errors when I try to compile the code. I think it’s because operationCode and operand are defined as integers and I can’t use strings with modulus (at least that’s what the error says). So what can I do?

to post a comment
Java

1 Comments(s)

Copy linkTweet thisAlerts:
@chazzySep 26.2008 — maybe wrap it using Integer.valueOf(list.get(i)) ?
×

Success!

Help @Static42 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.15,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...