I have an application that listens on the localhost port. I want the minimal panel to run this application in the foreground.
My application is in Java. I do not know how to write any exe files, but I can write bat files, and then make a shortcut that launches the bat file without showing the terminal. I would like the bat file to send some data to the port (preferably UDP, so there will be no stream overhead).
How to send data to UDP port?
One of the things I was thinking about was nslookup, but it will only connect to port 53, as far as I know.
This is only necessary for working with Windows. I would like it to work on XP and above, but if necessary, I can make a workaround.
source
share