java 简单的词法分析

package com.seakt.example;

import java.io.*;
import java.lang.String;

public class J_Scanner {

public String infile;
public String outfile;
public String []key = new String[33];
FileOutputStream out = null;

public J_Scanner(String infile,String outfile){

J_Scanner.this.infile = infile;
J_Scanner.this.outfile = outfile;
String[] key_temp = {"","auto","double","int","struct","break","else","long","switch",
"case", "enum","register","typedef","char","extern","return","union","const",
"float","short","unsigned","continue","for","signed","void","default","goto",
"sizeof","volatile","do","if","while","static"};
key = key_temp;

try {
out = new FileOutputStream(new File(outfile));
}
catch(IOException e){
e.printStackTrace();
}
}

//输出关键字
public void print_key(){
for(int i=0;i<J_Scanner.this.key.length;i++){
System.out.printf("%s\r\n",J_Scanner.this.key[i]);
}
}

//读文件
public void readFile() {

File file = new File(J_Scanner.this.infile);
BufferedReader reader = null;
try {

reader = new BufferedReader(new FileReader(file));
String tempString = null;

while ((tempString = reader.readLine()) != null) {
System.out.println(tempString.length());
getToken(tempString);

}
reader.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
}

//判断是否字符
private boolean isLetter(char ch){
if((ch>=65&&ch<=90)||(ch>=97&&ch<=122)||ch==35||ch==46)
return true;
else
return false;
}

//判断是否数字
private boolean isDigit(char ch){
if(ch>=48&&ch<=57)
return true;
else
return false;
}

//查找关键字
private int reserve(String s){
for(int i=1;i<33;i++)
if(s==key[i])
return i;
return 0;

}

private void getToken(String s) throws IOException{

String str_write=null;

int i=0,code;
char ch=‘ ‘;
String temp="";
if(s.length()!=0){
ch=s.charAt(i);
}
while(i<s.length()){

//如果是空跳过
while(i<s.length()&&ch==‘ ‘){
i++;
ch=s.charAt(i);
}
//是字母
if(isLetter(ch)){
while((isLetter(ch)||isDigit(ch))&&i<s.length()){
temp+=ch;
i++;
if(i<s.length()-1){
ch=s.charAt(i);
}else{
ch=‘ ‘;
}
}
i--;
code=reserve(temp);
if(code==0){
str_write = temp+"\t"+"标识符"+"\r\n";
out.write(str_write.getBytes());
temp="";str_write="";
}else{
str_write = temp+"\t"+"关键字"+"\r\n";
out.write(str_write.getBytes());
temp="";str_write="";
}

}else if(isDigit(ch)){
while(isDigit(ch)){
temp+=ch;
i++;
if(i<s.length()-1){
ch=s.charAt(i);
}else{
ch=‘ ‘;
}
}
i--;

str_write = temp+"\t"+"常数"+"\r\n";
out.write(str_write.getBytes());
temp="";str_write="";
}else if(ch==‘=‘){
i++;
ch=s.charAt(i);
if(ch== ‘=‘ ){
str_write = "=="+"\t"+"判断相等"+"\r\n";
out.write(str_write.getBytes());
temp="";str_write="";
}
else{
i--;
str_write = "="+"\t"+"赋值"+"\r\n";
out.write(str_write.getBytes());
temp="";str_write="";
}

}
else if(ch==‘+‘){
i++;
ch=s.charAt(i);
if(ch==‘+‘)
out.write(("++"+‘\t‘+"加1"+"\r\n").getBytes());
else{
i--;
out.write(("++"+‘\t‘+"加号"+"\r\n").getBytes());
}
}
else if(ch==‘&‘){
i++;
ch=s.charAt(i);
if(ch==‘&‘)
out.write(("&&"+‘\t‘+"与"+"\r\n").getBytes());
else{
i--;
out.write(("&"+‘\t‘+"按位与"+"\r\n").getBytes());
}
}
else if(ch==‘|‘){
i++;
ch=s.charAt(i);
if(ch==‘|‘)
out.write(("||"+‘\t‘+"或"+"\r\n").getBytes());
else{
i--;
out.write(("|"+‘\t‘+"按位或"+"\r\n").getBytes());
}
}

else if(ch==‘-‘)
out.write(( (char)ch+‘\t‘+"减号"+"\r\n").getBytes());
else if(ch==‘;‘)
out.write(( (char)ch+‘\t‘+"分号"+"\r\n").getBytes());
else if(ch==‘(‘)
out.write(( (char)ch+‘\t‘+"左括号"+"\r\n").getBytes());
else if(ch==‘)‘)
out.write(( (char)ch+‘\t‘+"右括号"+"\r\n").getBytes());
else if(ch==‘{‘)
out.write(( (char)ch+‘\t‘+"左花括号"+"\r\n").getBytes());
else if(ch==‘}‘)
out.write(( (char)ch+‘\t‘+"右花括号"+"\r\n").getBytes());
else if(ch==‘*‘){
i++;
ch=s.charAt(i);
if(ch==‘*‘)
out.write(("**"+‘\t‘+"运算符"+"\r\n").getBytes());
else{
i--;
out.write(("*"+‘\t‘+"乘号"+"\r\n").getBytes());
}

}
else if(ch==‘<‘){
i++;
ch=s.charAt(i);
if(ch==‘=‘)
out.write(("<="+‘\t‘+"小于等于"+"\r\n").getBytes());
else{
i--;
out.write(("<"+‘\t‘+"小于"+"\r\n").getBytes());
}

}
else if(ch==‘>‘){
i++;
if(i<s.length()-1){
ch=s.charAt(i);
}else{
ch=‘ ‘;
}
if(ch==‘=‘)
out.write((">="+‘\t‘+"大于等于"+"\r\n").getBytes());
else{
i--;
out.write(("<"+‘\t‘+"大于"+"\r\n").getBytes());
}
}
else
return;

i++;
if(i<s.length()){
ch=s.charAt(i);
}
}

}

//关闭输出流
public void close_outStream() throws IOException{
J_Scanner.this.out.close();
}

}

时间: 2024-09-29 16:53:05

java 简单的词法分析的相关文章

zoj Fibonacci Numbers ( java , 简单 ,大数)

题目 //f(1) = 1, f(2) = 1, f(n > 2) = f(n - 1) + f(n - 2) import java.io.*; import java.util.*; import java.math.*; public class Main { /** * @xqq */ public BigInteger an(int n) { BigInteger c; BigInteger a = BigInteger.valueOf(1); BigInteger b = BigIn

rabbitmq的java简单实现

1,安装rabbitmq.我的是ubuntu14.04,在官网上面下载最新的安装文件http://www.rabbitmq.com/install-debian.html 2.安装完之后  启动rabbitmq, sudo rabbitmq-server 3.下载jar包 4.最简单的hello world的实现 Sender类 package com.lubby.test; import java.io.IOException; import com.rabbitmq.client.Chann

Java简单聊天室

实现Java简单的聊天室 所用主要知识:多线程+网络编程 效果如下图 /** * * @author Administrator * * 简单的多人聊天系统——重点:同时性,异步性 * 1.客户端:发送消息,并且接收消息 * 1.1 消息发送至服务器:服务器每次都将客户发过来的信息发送到每个客户端 * 1.2 接收消息:发送的同时也要接收消息,所以必须有两个线程,一个发送消息,一个接收消息 * 1.3 关于这两个线程:如果没有线程,接收和发送就是按顺序执行的了,那么是发送后接收还是接收后发送?或

HDU 1715 大菲波数(JAVA, 简单题,大数)

题目 //BigInteger 和 BigDecimal 是在java.math包中已有的类,前者表示整数,后者表示浮点数 import java.io.*; import java.util.*; import java.math.*; public class Main { /** * @xqq */ public BigInteger an(BigInteger a, BigInteger b, int n) { if(n == 1) { return a; } for(int i = 2

Java简单语法与访问权限修饰符

Java简单语法总结 一:Java简单语法概述 1:分号,关键字,空白(空格,空白行),花括号和注释的使用. 2:标识符的规则(命名规则与业内约定). 3:Java表达式(逗号,问号和逻辑表达式). 二:分号,关键字,空白(空格,空白行),花括号和注释的使用 1:分号  在Java中通常用来分隔语句,即作为分隔符,另外它也是一个语句结束的标志. 2:关键字 通俗的理解,在编译器Eclipse中像"public","class"这些输入的时候就带有颜色的字成为关键字,

POJ 3982 序列(JAVA,简单,大数)

题目 //在主类中 main 方法必须是 public static void 的,在 main 中调用非static类时会有警告信息, //可以先建立对象,然后通过对象调用方法: import java.io.*; import java.util.*; import java.math.*; public class Main { /** * @xqq */ public BigInteger a99(BigInteger a, BigInteger b, BigInteger c) { f

JAVA简单Swing图形界面应用示例

package org.rui.hello; import javax.swing.JFrame; /** * 简单的swing窗口 * @author lenovo * */ public class HelloSwing { public static void main(String[] args) { JFrame frame=new JFrame("hello Swing"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLO

RPC学习----Thrift快速入门和Java简单示例

一.什么是RPC? RPC(Remote Procedure Call Protocol)——远程过程调用协议,它是一种通过网络从远程计算机程序上请求服务,而不需要了解底层网络技术的协议. RPC协议假定某些传输协议的存在,如TCP或UDP,为通信程序之间携带信息数据.在OSI网络通信模型中,RPC跨越了传输层和应用层.RPC使得开发包括网络分布式多程序在内的应用程序更加容易. 二.什么是Thrift? thrift是一个软件框架,用来进行可扩展且跨语言的服务的开发.它结合了功能强大的软件堆栈和

java 简单加密

* 所有的加密技术的基本操作都是用encrypt()和decrypt()方法对消息 * 进行分解和组合,其中消息是用空格分隔的字符串,除了encrypt()和decrypt() * 外每个加密类还需要encode()和decode()方法对每一个单词按照特定的算法 * 规则进行编码,.例如Caesar Cipher 和 Transpose Clipher * 按照设想由于加密都有相同的方法,因此首先定义一个通用的类Cipher类 * 封装公用的方法. package Case.Encryptio