What is REST API ? Above definition also contains the phrase ‘Web Service‘. Now let me explain in simple way. What is a web service ? A web service is anything which provides client to server or vice versa communication. It is a software that allows transactions between digital nodes. For example when you open […]
A complete guide to SharePoint automation
This post is all about directing viewers to actual SharePoint operations with working JAVA codes. Introduction to SharePoint APIs and How to create client ID and Client Secret ID to get access token for SharePoint operations. Below is the link for same. 2. How to upload files on SharePoint. Below is the link for same. […]
How to Replace newline character ‘\n’ by blank in java
Below is the 2 line code for replacing “\n” from any string in JAVA. Output username
How to move a file from one folder to another using Java
This is very simple yet tricky. Java has several ways to do it. Below is the easiest one to remember. This is a very simple code. But extensively used. Happy Coding. 🙂
How to call python script from a JAVA code
Hi All, I have been getting requests for an end to end solution to the problem – “How to run a python script, or any exe from JAVA code”. Google doesn’t have much stuff on this. Most sites are just giving one line of code to call a python script from a java code as […]
Java Code to create a panel with Textbox, Button and File Upload
Below is the code for a GUI box having textboxes, browse button with file chooser for a file upload. For any further doubts do post in comment section. Happy Coding 🙂 By Tobo.
Java HTTPS connection with SSL certificate Exception Handling
As the title suggests mostly when Java developers face the below error, they are in a fix. Exception in thread “main” javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target I have written a separate class to cater such issue once for all. The class name is ‘disablessl.java’. […]
Do you Need help over SharePoint?
Hi Guys, This isn’t a blog but a note post for all my viewers. If anyone needs any help over SharePoint operations like Upload a file, Download a file, Delete a file, Create path on SharePoint folder, insert record in SharePoint list, update record in SharePoint list, Delete Record on SharePoint list do post here […]
Is Scaler Academy Fraud?
Hi Everyone, I usually post Coding related stuffs on gotobo.in but today i thought to bring a true story of an academy’s interaction with me. Most people on google come to search for a coaching institute, placement cells, consultancies, Job providing firms, academies like Up grad, Simplilearn etc. There are several academies which promise to up skill […]
JAVA code to insert record in SharePoint List
Hi All, Corporate companies like Infosys, IBM, TCS have all collaborated with Sharepoint to use its services. Sharepoint as we all know gives us a platform to do CRUD operations on a file. We can upload a file on sharepoint and share its link with anyone amongst the organization employees. Now we can also create […]