Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

/* * To change this template, choose Tools | Templates * and open the template in the editor.

*/ package javaapplication4; import java.io.*; /** * * @author iis */ public class JavaApplication4 { /** * @param args the command line arguments */ public static void main(String[] args) throws UnsupportedEncodingException { // TODO code application logic here String s="vivek"; char[] bin ; int a=7; byte[] b=s.getBytes(); byte b1=(byte)a; try{ for(int i=0;i<s.length();i++) { a=b[i]; System.out.println(Integer.toBinaryString(a)); } } catch(Exception e) { } }

You might also like