Advertisement
Guest User

Untitled

a guest
May 29th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. package com.company;
  2.  
  3. import javax.swing.*;
  4. import java.awt.*;
  5.  
  6. public class Main {
  7.  
  8. public static void main(String[] args) {
  9.  
  10. JFrame frame = new JFrame();
  11. Font banglaFont = new Font("Arial Unicode MS", Font.BOLD, 15);
  12. frame.setFont(banglaFont);
  13. frame.setSize(500, 500);
  14. frame.setTitle("বাংলাদেশ");
  15. frame.setVisible(true);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement