Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a function in my program which sets the system clipboard to the given text

public void setClip(String arg)
    {
        while(true)
        {
            try{sysClip.setContents(new StringSelection(arg), this);}
            catch(Exception e){continue;}
            break;
        }
    }

It is within a class

public class MouseToucher extends Thread implements ClipboardOwner, NativeKeyListener, NativeMouseInputListener 

When a ClipboardOwner looses ownership it is notified, so this is notified and when it happens it just places the contents of the clipboard into the clipboard and whomever does that last is the owner. So it is always? the owner, we can say for sure.. So the other two things MouseToucher does is watch for global mouse and keyboard inputs. So when the program has no focus it still can see user input.

Its from google code called JNativeHook, I think it works well. Though, sometimes about 30 minutes of use or a bunch of restarts during testing seems to make it fail unitl a full restart.

So My Question is, because this is a Thread what does that entitle to the setClip function? Does it mean that I could potentially call this function while it is already(read; still) trying to set the sysClip?

I feel as if I cannot reliably set the text, not matter how long I let it wait.. What could be the cause of this?

share|improve this question
Possibly related to this, stackoverflow.com/questions/4379172/…. But I am not sure what the accepted answers purposes to do. – BumSkeeter Jan 26 at 16:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.