python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Issues with FileReader and Java GUI/jForm
I am trying to make a smaller version of Pwned Passwords (https://haveibeenpwned.com/Passwords) for my Ap comp sci project. Everything is goo besides 2 things:
(Issue 1) (image of my code to show bet...
tyco
Votes: 0
Answers: 3
Save Outlook attachment to memory instead of disk
I have a couple hundred daily Excel attachments in email that I want to pull appropriate data from and save into a database. I want to avoid saving each attachment to disk only to re-open from disk to...
scotscotmcc
Votes: 0
Answers: 1
Reading from file using delimiter to find largest and smallest, gets Integers max/min not the numbers from file
I´m trying to find the largest and smallest number from a textfile and has looked on other examples on stackowerflow.
But when I try I ends upp with Integer max and min value, not values from the file...
Bella
Votes: 0
Answers: 2
Why does this boolean expression return false when each term is true?
> (Console.Read() = (int 'd'));;
d
val it: bool = true
> (Console.Read() = (int 'd')) && (Console.Read() = (int 'o'));;
val it: bool = false
It seems to terminate without calling Read,...
sonny
Votes: 0
Answers: 1