Talk to a cgi-bin on WEB in POST method not GET
Question: I know how to fetch content of a URL address in Java, but what do I to write to a CGI script using the HTTP POST method? Answer: Passing
Question: I know how to fetch content of a URL address in Java, but what do I to write to a CGI script using the HTTP POST method? Answer: Passing
Question: I have a data structure similar to this: struct SPRITE { int x, y; int jumping;}; This struct is easy to use in a game, because I can just
Question: Does Java have a command that does what thesystem() function does in C, or a way to emulatethis action? For example, in C, system(“ls”); would call “ls” from the
Question: What is the main difference between Visual C and Visual C++ in Windows environments? Why would I want to use C++ instead? Is there any functional difference? Answer: Well,
Question: I’m using Borland C++ to perform some data conversion, and I have had some difficulties. Is it possible to convert all the text (including nonreadable text) within a text
Question: I want my Web page to have three frames: one for my applet and the other two for information. How can I make it so my applet updates both
Question: Is it possible to make recursive subroutine calls in Java? Answer: Yes, you can make recursive method calls in Java.Just make sure you have a termination condition to avoid
Question: How do I use one application to close another application in Windows 95? I need to overwrite a loaded DLL, so I have to close the application that loads
Question: How do you dynamically allocate memory for a two-dimensional array? This is what I had, and my g++ compiler didn’t like it: int **m;m= new int [100][100]; Answer: Yep.