Code Monkey home page Code Monkey logo

jcoder's People

Contributors

ansjsun avatar shi-yuan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jcoder's Issues

寻找源码的全类名问题

该项目中的代码需要格式化之后才能运行?

public static String findClassName(String sourceCode) {

	try (BufferedReader br = new BufferedReader(new StringReader(sourceCode))) {
		String temp = null;

		while ((temp = br.readLine()) != null) {
			if (StringUtil.isBlank(temp)) {
				continue;
			}
			Matcher matcher = PAT.matcher(temp);

			if (matcher.find()) {
				temp = temp.split("[\\s+?;{]")[2];
				return temp;
			}
		}
	} catch (IOException e) {
		e.printStackTrace();
	}

	return null;
}

针对都是一行的代码是无法找出正确的类名的。
如 :
String code = "package com.test; public class Test {public static void main(String[] args) {String hello = "Hello World!!!";System.out.println(hello);}}";
使用反捕获的方式可能是个不错的选择。

项目功能的疑惑

开始看放在nlp目录下,以为是nlp相关配置,例如自定义分词之类的功能,自己部署运行了才知道这个功能和语义没有任何关系,只是一个动态jar加载,类似ogsi的那种

沙发

一直关注大神的动态 沙发 o(*≧▽≦)ツ

Build and change language from Chinese to English

Screenshots of the interface are in English, however, when I build locally the application starts with the Chinese language set. How do I change it? Are the language sets part of master?

Appreciate your feedback.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.