Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
![](https://s.yimg.com/ag/images/default_user_profile_pic_192sq.jpg)
Anuk
free hosting for java servlets, jsp?
hi does anyone know a hosting service which provide free web hosting for servlets, jsp etc? (not to host a professional website... just to try out examples given on books for learning purposes)
5 AnswersOther - Internet10 years agoFilling out the CSS Profile?
I'm filling out my CSS profile these days. But some of the questions in that are a bit difficult to give an exact answer. Is it ok to put an approximate value for these fields?
e.g.
Enter the amount your parent(s) paid or expect to pay for food in 2010.
Enter the amount your parent(s) paid or expect to pay for clothing in 2010.
Enter the amount your parent(s) paid or expect to pay for automobile maintenance in 2010.
2 AnswersFinancial Aid1 decade agoHow can i add a newline character to this code in java(windows)? i tried using "\n" but it ain't working!!?
code:
import java.awt.*;
import java.awt.event.*;
public class ShowFonts extends Frame{
String msg="";
public ShowFonts(){
addWindowListener(new MyWindowAdapter());
}
public void paint(Graphics g){
String FontList[];
GraphicsEnvironment ge=GraphicsEnvironment.getLocalGraphicsEnvironment();
FontList=ge.getAvailableFontFamilyNames();
for(int i=0;i<FontList.length;i++)
msg+= (FontList[i]+"\n ");
g.drawString(msg,40,50);
}
public static void main(String []args){
ShowFonts sf=new ShowFonts();
sf.setSize(550,60);
sf.setTitle("Font List");
sf.setVisible(true);
}
}
2 AnswersProgramming & Design1 decade ago