There are various operators defined in Java language to carry out different operations with the Variables in Java. If you know any of the programming language, most of the operators in Java are self explanatory. Operators …
Blog Posts
All modern programming languages needs to have concept of variables. Variables are there in a programming language to store data into. There are 8 data type defined in Java which are inbuilt in java core , …
If you are looking to forward non-www pages on your domain to www. Here is what you need to do. Login to CloudFlare and go to ‘Page Rules’ section of your domain. If the URL matches …
While automating a form selection with Selenium and Java, It’s a good practice to randomize your form values. Here is how you can select random values on radio buttons. Lets suppose you have a radio button …
Step 1 : Get the Foreign Key Name. SHOW CREATE TABLE tableName; Note the name of Foreign key (which is mostly auto generated) output will look something like CONSTRAINT `FK4C5B93445F11A0B7` FOREIGN KEY (ID`) REFERENCES `PARENT_TABLE` (`ID`) …
While migrating application code from VS2010 to VS2015, I got the error U1077 related to link.exe in NMAKE file and many more related errors. After alot of research on this error and migartion related stuff,Finally I …
While I was accessing Json webservice from C++ using “C++ rest sdk” ,I came across the error “Incorrect Content-Type: must be textual to extract_string, JSON to extract_json.” Reason was The webservice I was calling using “GET” …
Being a C++ developer ,It was quite difficult to start working with webservices. Believe me after setting a proper development environment it was quite simple to access json webservice and extract json content through VC++. Setting …
Once you have installed XAMPP, You have your system ready necessary development programs like PHP, MySQL etc. But you cannot yet run those commands from you command line, Because your terminal does not recognise those yet. …
Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your WAR (short for Web ARchive) file, and just drop it in the deploy directory in Tomcat. …