Tagged Questions
-2
votes
1answer
35 views
Java Beginner Help Virtual Methods [closed]
I am a student in an OOP class, this is the first time I have ever actually worked with coding in Java and my head is spinning a bit.
My project is incomplete but only because I cannot seem to find ...
0
votes
2answers
54 views
Abstract/Virtual Functions in java
I've heard that all Java functions are implicitly virtual, but I'm still not sure if this will run how I want.
Suppose I have a class A, with child B.
both A and B have functions called foo(), so B's ...
0
votes
0answers
38 views
code regarding keyPress( ) method and keycode for virtual keyboard in java for special characters
I have to create a virtual keyboard in java to type frequently some special characters like:Ã Ð Ğ Ș Ģ Ŗ etc. As they are not present in our regular English keyboards, the virtual keyboard is must for ...
1
vote
1answer
84 views
Get Arduino binary from a COM port using Java
I want to get Arduino code onto a virtual serial port instead of the actual Arduino. The IDE sends binary code to the Arduino through the COM port which in this case will be a virtual COM port and no ...
0
votes
0answers
30 views
how to create jdk virtual environment when jdk is not present in the system?
i created software for compressor and decompressor and the code is written in java but for compressing and decompressing you require jdk. so is it possible to create virtual environment where we can ...
2
votes
4answers
107 views
Is it OK to call abstract method from constructor in Java?
Let's suppose I have an abstract Base class that implements Runnable interface.
public abstract class Base implements Runnable {
protected int param;
public Base(final int param) {
...
4
votes
2answers
194 views
Java method calls faster than virtual method calls in C++?
Just stumbled upon this in wikipedia:
Java can access derived instance methods faster than C++ can access
derived virtual methods due to C++'s extra Virtual-Table look-up.
However, non-virtual ...
0
votes
2answers
77 views
illegal start of expression error in virtual keyboard code in java
I am getting an error illegal start of expression in the code below, at line -> public class hindilang , I have seen other questions and answers on this site, but i don't know where i am going wrong ...
1
vote
0answers
86 views
Detecting virtual machine in Java
I've been searching for a good way to detect whether the app is running in a virtual machine with a java application, so it can run on any virtualized OS. But all the links I've found are with ...
48
votes
5answers
2k views
Should I mark all methods virtual?
In Java you can mark method as final to make it impossible to override.
In C# you have to mark method as virtual to make it possible to override.
Does it mean that in C# you should mark all methods ...
0
votes
1answer
89 views
Windows Virtual Keyboard
I have a JSP page with a button inside. When i click the button, windows on-screen keyboard will pop up.
How do I do it?
I've done research and I've found "Runtime.getRuntime().exec("osk");"
but ...
-1
votes
2answers
2k views
javaw.exe cannot find path [duplicate]
Possible Duplicate:
Eclipse will not open due to environment variables
I'm new to Java and I'm using eclipse IDE. I tried to run a project, but I'm getting error. It says the javaw.exe ...
0
votes
2answers
656 views
Java virtual file system application
Good day, everyone,
I need to make a virtual Java file system. It means that all the modifications on this system are not reflected on real OS - so if user creates, moves, deletes, copies files and ...
4
votes
3answers
86 views
Creating a virtual template method in Java
The situation I'm trying to create is the following:
I have a base class containing a static template method that receives a ResultSet filled by a query in the database, and returns a list with the ...
0
votes
1answer
275 views
Processing open a virtual serial port
I'm using processing lib and I want create a virtual Serial port with it, and with oter read, have much examples for read Serial ports but I not found how to open a serial port, how I can make this.
0
votes
2answers
2k views
Java executable javaw.exe, Error: Could not create Java virtual Machine
I am trying to install some commercial software that was written in Java for a Windows computer operating system. I have downloaded Java from their site and I have also downloaded the JDK package for ...
0
votes
1answer
299 views
Create virtual network interface programmatically
Is it possible to add a virtual network interface with Java or C#. I need to set a bunch of IPs to my computer for a data mining app and I don't have enought NICs (I don't want to buy more yet).
I ...
2
votes
3answers
103 views
Java - Multiple decorators do not work
I'm currently experimenting with decorators. I created a Tank class and two decorators: DoubleGunTank (shoots more powerfully) and FasterTank (drives faster). Here they are:
public class Tank {
...
2
votes
4answers
174 views
Can someone explain what virtual machines are and why they're useful? [closed]
I hear the term thrown around a lot and I'm sort of confused.
Is it just a software application built on an operating system that could simulate another operating system?
When someone codes a ...
0
votes
3answers
1k views
Problems launching Android java project in a Android Virtual Machine using Eclipse
I have installed and set up Eclipse and the plugin ADT in order to work with Android SDK. So far so good. But when I try to launch a VM(virtual Machine) for any android platform that I choose (for ...
0
votes
2answers
2k views
getting failed to create java virtual machine error everytime I try to open eclipse
I have tried a variety of different solutions found on stack and other places on google and I keep getting the same error message every time I try to open eclipse. It has been running fine for ...
1
vote
2answers
91 views
virtual files such as /proc/uptime in java
Is it possible to create virtual files (such as /proc/uptime for exanple) in java? That is, the file does not really represent a physical entity on the hard disk, but when accessed, some process ...
0
votes
2answers
187 views
Ubuntu Xen Virtualization [closed]
I am using Ubuntu 11.04 for virtualization.
My questions are :
Am I using right Ubuntu? Coz i read that for such kind of a system,we need ubuntu server.
Is XEN advisable?
Thanks for future ...
1
vote
2answers
2k views
“Virtual keyboard” control in Java?
I'm doing a project where I need a virtual keyboard inside a JPanel that I'm using in full screen. The input comes from an external library that gets the position touched over the screen.
Does anyone ...
0
votes
1answer
163 views
Can I detect if host is a VM?
Is there any way to detect if the host PC a java app is running on is a Virtual Computer or not? Just want to warn the user that they may ( rarely ) experience issues if using a VM and that we ...
2
votes
0answers
194 views
Virtualization mini-project [closed]
I have spent some time reading wiki and Virtual Machines by James Smith and Ravi Nair.
I know that Virtualization is (in layman's term) enacting the behaviour or performance of something.
Now it so ...
0
votes
3answers
156 views
Does the Java VM skip multiplication by zero?
I would like to know if zero multiplies are avoided by the Java virtual machine. Thanks
0
votes
1answer
317 views
How can I create a virtual disk (letter, share, etc.) on Windows using Java?
I'm looking at trying a project for class and as part of it I will need to create a "disk" to allow users to write some files (e.g. a RAM disk). I've used various languages, but I'm most familiar with ...
2
votes
1answer
81 views
How can I retrieve the original File of a FileInputStream
I need based on the APIs I use, to implement a method with an InputStream parameter (instance of FileInputStream) that will call a method with a File argument.
implementedMethod(InputStream is){
...
4
votes
2answers
173 views
Java and virtual memory: Controlling/influencing which objects are kept in main memory?
I'm writing a cache server in java that will cache image data (jpgs, pngs, tiff etc) in memory for fast access over http. The images are rendered by another service, which is an expensive operation, ...
0
votes
1answer
287 views
android application - interactive swf file not properly working through WebView control
I want to clarify one doubt ..How we can properly load an interactive swf file in an android application.?
In case with a non-interactive swf file its OK..i can able to display it properly.
But in ...
3
votes
2answers
169 views
Java Virtual Memory for a no-op program?
For the following no-op code,
public class a {
public static void main(String args[]) throws Exception{
Thread.sleep(100000);
}
}
If I run it on a 64-bit jvm, through "top" I can see that it uses ...
0
votes
1answer
443 views
android application - android emulator virtual sd card - swf file not loading
I want to display an swf file in my android application.
For testing purposes am using android emulator . So i created a virtual sd card for the application to read the files.Inside this sd card i ...
1
vote
2answers
369 views
Java Virtual Folder?
Is it possible to somehow create a virtual folder with Java, and hook a bunch of events to it (for example whenever another program tries to fetch a list of files inside the folder, or tries to read a ...
34
votes
11answers
3k views
Why not have all the functions as virtual in C++?
I know that virtual functions have an overhead of dereferencing to call a method. But I guess with modern architectural speed it is almost negligible.
Is there any particular reason why all ...
2
votes
3answers
101 views
Java inheritence problem: going beyond the vtable
Here is the scenario: I have an interface A, 100 classes B0 ... B99 that implement only A and 50 classes C0, C2 ... C98 that extend B0, B2 ... B98.
The B classes work with a MySQL database, doing ...
0
votes
2answers
1k views
open the Windows virtual keyboard in a Java program
I would like to create an event in a button.
When I click in the button, I would like to open the Windows virtual keyboard.
Can you help me with the code?
Thank you for your collaboration.
Best ...
1
vote
1answer
944 views
Java awt.Robot: send key with position for eg. right shift or right ctrl
I want to use the java.awt.Robot class to implement a virtual keyboard. I am wondering if there is a way to send the keycode WITH the key location (left or right) using the keyPress(int) method. If ...
4
votes
4answers
3k views
C++ and Java : Use of virtual base class
I have some doubts while comparing C++ and Java multiple inheritance.
Even Java uses multiple, multi-level inheritance through interfaces - but why doesnt it use anything like a virtual base class ...
1
vote
2answers
495 views
Static method calls to derived types over virtual implementations? (Android)
I have class A, with methods foo and bar, that are implemented by A1 and A2. The functionality in both A1 and A2 is the same. In other words:
public class A {
public int foo() { return 0; ...
4
votes
4answers
2k views
can we implement a java interpreter in hardware that executes Java bytecodes natively?
if we implement java interpreter in hardware then how we can achieve architecture neutrality of java bytecode...
does java uses JIT(just in time interpreter) ?
and how all this is related to Virtual ...
0
votes
2answers
959 views
Increasing Java Heap size on Virtual server?
Peeps,
I'm hosting our dev env on a virtual server over at Mediatemple - the $50 bucks a month kind. Our application does some fairly memory intensive processing and on the last run, ran into the ...
1
vote
5answers
1k views
virtual listbox in Swing
I'm trying to figure out how to make a virtual listbox (or tree or outline) in Swing -- this would be one where the listbox can show a "view" within a large result set from a database without getting ...
7
votes
7answers
12k views
Virtual functions in C# and Java
How are the virtual functions work in C# and Java ? Does it use same vtable and vpointer concept similar to C++ or is it something totally different?
