Click here to Skip to main content
15,892,005 members

Videos


Page 1 of 8
1 2 3 4 5 6 7 8


1. Exception handling framework in Java
Shubhashish_Mandal Updated: 30 Apr 2017
Rating: 5.00/5 ( (4 votes))
.

()
» »
Updated:
Rating: ()
2. Is it possible to convert PDF document to IMAGE
pdf box
Mobile Apps » Android »
Shubhashish_Mandal Updated: 28 Apr 2016
Rating: 2.50/5 ( (2 votes))
3. How to get this pointer to activity instance from anonymous method
You could try any of the two approaches : 1. inside MyActivity create a method which return "this" . i.eActivity getActivity(){ return this;}and then call this method from anonymous method.new MyTask(getActivity()).execute(val);2. or you can use this to access the "this"...
Mobile Apps » Android »
Shubhashish_Mandal Updated: 28 Apr 2016
Rating: ( (No votes))
4. How can i create a dynamic table in spring mvc each row includes a dropdown list
Hope this link will give your all answer.W2Ui GridI have used it in many application. It is really a cool api.
Web Development » Spring »
Shubhashish_Mandal Updated: 7 Mar 2016
Rating: ( (No votes))
5. Class Unmapped exception
For "class" attribute use full class name along with package name instead of the class name. i.e use this instead of
Shubhashish_Mandal Updated: 28 May 2015
Rating: ( (No votes))
6. Error Array "java.lang.IndexOutOfBoundsException: Invalid index 0, size is 0"
Exception is very clear that you have tried to access some index which does not exist in the respective collection. I have look into the MainActivity.java, and I have found the following glitch. You have tried to access the list contents without verifying the list(whether null or...
Mobile Apps » Android »
Shubhashish_Mandal Updated: 6 May 2015
Rating: 1.00/5 ( (1 vote))
7. Error Array "java.lang.IndexOutOfBoundsException: Invalid index 0, size is 0"
Exception is very clear that you have tried to access some index which is not available in the list. I have look into the MainActivity.java I have found the following glitch. You are trying to fetch data from a list without verifying the list(whether null or empty...
Mobile Apps » Android »
Shubhashish_Mandal Updated: 6 May 2015
Rating: 4.00/5 ( (1 vote))
.

()
» »
Updated:
Rating: ()
8. How to json parsing in struts?
...Try this link ...http://struts.apache.org/release/2.2.x/docs/json-plugin.html
Shubhashish_Mandal Updated: 27 Nov 2014
Rating: ( (No votes))
9. Java Error - I Think Problem May Be The Nextline() After Nextint() But Not Sure..
The nextInt() method does not read the last newline character of your input, and hence its consumed in the next call to nextLine().deleteData() {instead int choice = input.nextInt();Try thisint choice = Integer.parseInt(input.nextLine());}
Shubhashish_Mandal Updated: 24 Nov 2014
Rating: ( (No votes))
10. how to retrieve column values from query
"res" is a list of G_DriverStatus object. each object represent each row. So just iterate over the list you will get the object and then call the getter method on each object you will get the column value
Shubhashish_Mandal Updated: 3 Jul 2014
Rating: ( (No votes))
11. How to merge two JSPs into single jsp, save.jsp and edit.jsp. Both having same fields
1. Keep a single page.2. Call the action with the extra option field . i.e say your action/servlet name updateServlet. then call itfor save/updateServlet?action=SAVEfor edit/updateServlet?action=EDIT you can achieved this by several way by using hidden field.
Shubhashish_Mandal Updated: 27 May 2014
Rating: ( (No votes))
12. java android, how to send session accept?
You have to send the cookie as a part of request. This might help you.http://hc.apache.org/httpcomponents-client-4.3.x/primer.html
Mobile Apps » Android »
Shubhashish_Mandal Updated: 27 May 2014
Rating: ( (No votes))
13. database table not showing up on jsp webapp table
Connection object getting null.Statement stmt = database.con.createStatement();Check makeConnection() method whether it actually return an object or else.
Shubhashish_Mandal Updated: 27 May 2014
Rating: ( (No votes))
14. How to detect Client timezone using JSP?
Try this function getTimeZoneId(){ var timezone=String(new Date()); return timezone.substring(timezone.lastIndexOf('(')+1).replace(')','').trim();}
Shubhashish_Mandal Updated: 15 Apr 2014
Rating: ( (No votes))
15. how to implement multiple languages and multiple themes in spring mvc
This is known as Spring Internationalization . http://www.mkyong.com/spring-mvc/spring-mvc-internationalization-example/[^]
Programming Languages » Java » Java SE 6
Shubhashish_Mandal Updated: 20 Mar 2014
Rating: ( (No votes))
16. How to accept a single digit number in a JTextField[][] num = new JTextField[9][9]
Set document for the respected JTextField. You need to create a subclass of PlainDocument which basically hold the logic for length restriction(or any other logic if you want)Here is the reference link click
Shubhashish_Mandal Updated: 29 Jan 2014
Rating: ( (No votes))
17. Error "The module has not been deployed. See the server log for details"
did you check this : Caused by: java.lang.IllegalArgumentException: The servlets named [UploadDownloadFileServlet] and [com.uoc.elearning.web.UploadDownloadFileServlet] are both mapped to the url-pattern [/UploadDownloadFileServlet] which is not permitted
Shubhashish_Mandal Updated: 29 Jan 2014
Rating: 5.00/5 ( (1 vote))
18. Struts 2 remove .action extension when redirect
Try this....
Shubhashish_Mandal Updated: 30 Dec 2013
Rating: ( (No votes))

Page 1 of 8
1 2 3 4 5 6 7 8