Posts

Showing posts from November, 2009

Featured Post

SEO Tips

Image
“What You Must Do To Rank Well For Your Inner Web Pages…” N ow that you know how to rank well for your homepage (index.htm page), I’d like to focus on various things you MUST do to rank well for your inner pages. In order to do this, I’d like to use one website as an example of how you should structure your internal linking within your website and one website showing you what NOT to do. I think you’ll be surprised to know that over 90% of all websites on the internet don’t have proper internal linking throughout their website. Note: Internal Linking is the way you link to other pages within your own website. You might recall in previous lessons that I taught you the importance of using your main keyword(s) in the anchor text of links pointing to your website. Anchor text is the single most important factor for ranking well in the search engines. Not only must you get links containing your main keyword(s) in the anchor text, from other websites, but you should also link to ot...

<a href="http://www.sitarampv.com">JAVA Prog designed Blog Post by Venkat</a>

Hi This is a Sample Post generated By venkat By Blog tool for Testing purpose

Re:Back from vacation

Hi Guys , Have U observed Post named as Back from Vacation . That Post is generated By My Simple Java Program... I have created a Blog tool using Google Blog API.. It is working .... Thanks to google for providing such a Nice API..(

Back from vacation

I didn't want to leave Aruba, but I ran out of money :(

View Design using Spring Web Flow

Hi Friends , Spring  Web MVC code is available here . If you want Full code please send me a mail: srampv@gmail.com  . Your suggestions will be value added . SPRING View Design : --------------------------------- package myapp.contr; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.*; import org.w3c.dom.views.AbstractView; import org.apache.commons.logging.*; import java.util.*; public class RamLoginController implements Controller {     protected final Log logger=LogFactory.getLog(getClass());     @Override         public ModelAndView handleRequest(HttpServletRequest arg0,HttpServletResponse arg1) throws Exception {         // TODO Auto-generated method stub         String now=(new Date()).toSt...

Generating XLS using Java

Hi Friends , Please find below code for generating excel sheet using java import java.io.FileOutputStream; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; /** * This is a sample to create an Excel Sheet using Jakarta POI API * * @author Venkata Sitaram Pilaka * @version 1.0 */ public class A { /** A place for the output Excel file to go */ public static String outputFile = "java.xls"; public static void main(String argv[]) { try { // Create a New XL Document HSSFWorkbook wb = new HSSFWorkbook(); // Make a worksheet in the XL document created HSSFSheet sheet = wb.createSheet(); // Create row at index zero ( Top Row) HSSFRow row = sheet.createRow((short) 0); // Create a cell at index zero ( Top Left) HSSFCell cell = row.createCell((short) 0); // Lets make the cell a string type cell.setCellType(H...