Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
3
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
1
1 Commented Post
~14.8K People Reached

10 Posted Topics

Member Avatar for subhraakasuny

Hi All, I have an excel file containg chart.I am able to read the chart from excel file using POI XSSF. But I am not able to save the XSSFChart as an image.I want the chart to be stored in my harddrive as an image(.jpg or .png).Please find my code …

Member Avatar for GovindSharma
0
4K
Member Avatar for subhraakasuny

Hi Team, I have an excel which has multiple rows and each row can have multiple images associated with that , which are postioned on a specific cells of that particular row.I know while we are positioning a image on top of a cell, that is not associated with the …

Member Avatar for orichisonic
2
1K
Member Avatar for subhraakasuny

Hi All, I want to calculate the exact size contained by an object in heap at any time.I heard about **Instrumentation** Interface.I have already implemented this as a core java project after getting some knoweldge from some of websites.Actually,My concern is to implement this in a Webbased prject.Can anyone help …

0
81
Member Avatar for subhraakasuny

Hi Team, I am beginner in Java. I am trying to prepare report using Java,the code will generate a Microsoft Word Document and add some text and images in it. I am using Apache POI for this.I am able to create and add text in the doc file and the …

Member Avatar for subhraakasuny
-1
8K
Member Avatar for subhraakasuny

Hi All, I want a make a system logger in java to track all the activity that is going on my system. Like 1)User Login 2)File Copy 3)Other Activities But,Being a beginner I don't have much knoweldge regarding my goal. Please provide your valuable feedback.

Member Avatar for stultuske
0
133
Member Avatar for ahmed.talha.16

import java.io.*; /*Prime number is that kind of number which divisible by only 1 and itself*/ public class PrimeNumber { public static void main(String args[])throws IOException { double num; int flag=0; System.out.println("Enter the number to check whether it is prime or not:"); BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(System.in)); num=Double.parseDouble(bufferedReader.readLine()); /*so we have …

Member Avatar for uttkarshsing
-1
344
Member Avatar for pooja.singh.3950

you can use switch case to calculate lcm and gcd in one program and this is the piece of code #include<stdio.h> #include<conio.h> #include<stdlib.h> int temp; int lcm(int no1,int no2) { if(no1==no2) return(temp/no1); else if(no1>no2) lcm(no1-no2,no2); else if(no2>no1) lcm(no2,no1); } int gcd(int no1,int no2) { if(no1==no2) { return(no1); } else if(no1>no2) …

Member Avatar for Gonbe
-2
170
Member Avatar for dqddani

you can add a id to the text area,and add the follwing attribute for the corresponding id in the head tag like <html> <head> #scrolltext { overflow: scroll; overflow-y: scroll; overflow:-moz-scrollbars-vertical; } </head> <body> <textarea rows="4" cols="20" id="scrolltext"> </textarea> </body> </html>

Member Avatar for subhraakasuny
0
266
Member Avatar for subhraakasuny

hi folks, i am a beginner in JSP, and i am studying headfirst servlet & JSP,but at the time of running a code from there,i have an problem there is directory structure **src/com/example/web/BeerSelect.java** and the code is package com.example.web; import com.example.model.*; import javax.servlet.*; import javax.servlet.http.*; import java.io.*; import java.util.*; public …

Member Avatar for subhraakasuny
0
304
Member Avatar for subhraakasuny

hi folks,basically i am facing a problem importing a package, dir structure is like src |---com |---example |---model |---BeerExpert.java package com.example.model; import java.util.*; public class BeerExpert { public List getBrands(String color) { //code goes here } } src |---com |---example |---web |---BeerSelect.java now in BeerSelect.java i am importing the BeerSelect …

Member Avatar for subhraakasuny
0
398

The End.