scanner

What's the easiest way to use a connected scanner?

Hi there. I'm making an application that your typical CRUD scenario. I also need to scan a document and save that image to disc. I don't really need complex image manipulation, just a simple "call scanner to scan, catch the scanned image" approach. What's the easiest way to accomplish this on a Windows Form .NET 3.5 c# application? T...

I'm trying to take an input using Scanner(System.in) but it's not letting me. Help!

So I'm trying to take an input from a user using Scanner(System.in) but when i try to type something into the console it won't let me. Can anyone help? Function.show(); Scanner input = new Scanner(System.in); if (input.equals("a")) { Function.outputFile(1, list); } input.close(); ...