-
Jedit4.3.2的源代码,适合有兴趣的人研究
jEdit是一个,在GPL下发布。它可以在Windows、Linux、Mac OS等多种平台下运行,并且有很多插件,可以扩充基本功能。它也支持80多种文件类型的文法加亮显示。支持包括UTF-8在内的多种字符编码。jedit是一个用java编写的源码开放的文本编辑器。有很多有用的特性,包括语法加亮显示,括号匹配,表达式搜索,多个文件搜索和替换,定义键盘宏等等。
- 2022-03-18 14:00:20下载
- 积分:1
-
openfire需要用到的jar包
资源描述
openfire需要用到的jar包:tangosol.jar
jetty-jmx-8.0.0.jar
coherence.jar
bouncycastle.jar
coherence-work.jar
mina-integration-jmx-1.1.7.jar
- 2022-01-26 04:49:30下载
- 积分:1
-
Mahout 源代码
Apache Mahout 是为分布式/非分布式编程提供了足够的框架实用开放源码机器学习图书馆。它具有可扩展性,并可以处理大量的数据相比,其他机器学习框架。Apache Mahout 是 Apache Hadoop 项目之一。Mahout 包含三种类型的算法: 推荐系统 (专门协同过滤)、 聚类和分类。推荐系统的实现可进一步分为非分布式方法和分布式的方法。推荐系统的分布式实现之一使用 MapReduce,这是可扩展性,适用于处理大规模、 分布式的数据集。其可伸缩性和专注于真实世界的应用程序做出 Mahout 越来越受欢迎的选择为组织设法利用大型机器 Learning.The Apache Mahout 体系结构提供了一套丰富的组件,从中我们可以构建一个自定义的推荐系统选择的算法。Mahout 设计为企业准备用于性能、 可扩展性和灵活性。顶层的包定义了 Apache Mahout 接口,对这些关键的抽象,[] 是: · DataModel· UserSimilarity· ItemSimilarity· UserNeighborhood· 推荐
- 2022-08-05 12:06:52下载
- 积分:1
-
function-any
Content identification function, which can be for any of the content and any number of tags
- 2017-05-29 10:35:21下载
- 积分:1
-
Orong_tbzs
详细介绍 - [ 聚融网贷款投标助手源码 ]
聚融网贷款投标助手源码是一个安卓版本的聚融网贷款投标助手项目源码,一般公司或者开发者都不会把这类内部使用的项目源码泄漏出来,这个项目是依托于他的官网的orong.cn,但是现在官网挂掉了,估计整个公司跑路了才会分享出来,因为项目缺少部分图片资源所以原项目会报错,我使用资源目录下的其他图片文件对缺少的图片资源进行了替代,可能图片显示会有错误但是整个项目可以正常的运行起来(Detailed financial network loan tender assistant source]
Poly financial loans Network Bidding Assistant source is an Android version of the fusion of the net loan bidding assistant project source code, companies or developers won t leak out the internal use of the project source code. The project is relying on his official website orong.cn, but now official website hang, it is estimated that the company running the will share out, because the items missing parts of the picture resources so the original project will misstatement, I use resource directory under the other picture file to replace the missing image resources may picture shows there will be mistakes but the entire project can be normal operation)
- 2016-05-30 13:36:23下载
- 积分:1
-
android 引导界面 仿人人网
* 功能描述:导引界面(每张图片都执行的动画顺序,渐现、放大和渐隐,结束后切换图片和文字 * 又开始执行 渐现、放大和渐隐,当最后一张执行完渐隐,切换到第一张,从而达到循环效果)
- 2015-02-24下载
- 积分:1
-
goods
说明: 网上书城,加入购物车,买卖书,结账。黑马小项目。适合开发(Online bookstore, add shopping cart, buy and sell books, check out. Black Horse Small Project. Suitable for development)
- 2020-06-20 06:20:01下载
- 积分:1
-
A lightweight, well designed metronome app for Android
Metronome is a lightweight, well designed metronome app for Android focused on offering a consistent and usable design without limiting functionality.
- 2018-01-01下载
- 积分:1
-
JSP视频网站
通过典型的java三层设计结构,完成对数的存储,控制,显示。其中数据库使用了MysQL,对于网页的设计,使用了js、JSP、html等知识,通过简洁合理的设计及代码撰写,麻雀虽小五脏俱全,适合所有这方面的开发者。
- 2022-03-10 00:31:13下载
- 积分:1
-
仿IOS 对话框
package com.zf.iosdialog.widget;import android.app.Dialog;import android.content.Context;import android.view.Display;import android.view.LayoutInflater;import android.view.View;import android.view.View.OnClickListener;import android.view.WindowManager;import android.widget.Button;import android.widget.FrameLayout;import android.widget.ImageView;import android.widget.LinearLayout;import android.widget.LinearLayout.LayoutParams;import android.widget.TextView;import com.zf.iosdialog.R;public class AlertDialog {private Context context;private Dialog dialog;private LinearLayout lLayout_bg;private TextView txt_title;private TextView txt_msg;private Button btn_neg;private Button btn_pos;private ImageView img_line;private Display display;private boolean showTitle = false;private boolean showMsg = false;private boolean showPosBtn = false;private boolean showNegBtn = false;public AlertDialog(Context context) {this.context = context;WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);display = windowManager.getDefaultDisplay();}public AlertDialog builder() {// 获取Dialog布局View view = LayoutInflater.from(context).inflate(R.layout.view_alertdialog, null);// 获取自定义Dialog布局中的控件lLayout_bg = (LinearLayout) view.findViewById(R.id.lLayout_bg);txt_title = (TextView) view.findViewById(R.id.txt_title);txt_title.setVisibility(View.GONE);txt_msg = (TextView) view.findViewById(R.id.txt_msg);txt_msg.setVisibility(View.GONE);btn_neg = (Button) view.findViewById(R.id.btn_neg);btn_neg.setVisibility(View.GONE);btn_pos = (Button) view.findViewById(R.id.btn_pos);btn_pos.setVisibility(View.GONE);img_line = (ImageView) view.findViewById(R.id.img_line);img_line.setVisibility(View.GONE);// 定义Dialog布局和参数dialog = new Dialog(context, R.style.AlertDialogStyle);dialog.setContentView(view);// 调整dialog背景大小lLayout_bg.setLayoutParams(new FrameLayout.LayoutParams((int) (display.getWidth() * 0.85), LayoutParams.WRAP_CONTENT));return this;}public AlertDialog setTitle(String title) {showTitle = true;if ("".equals(title)) {txt_title.setText("标题");} else {txt_title.setText(title);}return this;}public AlertDialog setMsg(String msg) {showMsg = true;if ("".equals(msg)) {txt_msg.setText("内容");} else {txt_msg.setText(msg);}return this;}public AlertDialog setCancelable(boolean cancel) {dialog.setCancelable(cancel);return this;}public AlertDialog setPositiveButton(String text,final OnClickListener listener) {showPosBtn = true;if ("".equals(text)) {btn_pos.setText("确定");} else {btn_pos.setText(text);}btn_pos.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {listener.onClick(v);dialog.dismiss();}});return this;}public AlertDialog setNegativeButton(String text,final OnClickListener listener) {showNegBtn = true;if ("".equals(text)) {btn_neg.setText("取消");} else {btn_neg.setText(text);}btn_neg.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {listener.onClick(v);dialog.dismiss();}});return this;}private void setLayout() {if (!showTitle && !showMsg) {txt_title.setText("提示");txt_title.setVisibility(View.VISIBLE);}if (showTitle) {txt_title.setVisibility(View.VISIBLE);}if (showMsg) {txt_msg.setVisibility(View.VISIBLE);}if (!showPosBtn && !showNegBtn) {btn_pos.setText("确定");btn_pos.setVisibility(View.VISIBLE);btn_pos.setBackgroundResource(R.drawable.alertdialog_single_selector);btn_pos.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {dialog.dismiss();}});}if (showPosBtn && showNegBtn) {btn_pos.setVisibility(View.VISIBLE);btn_pos.setBackgroundResource(R.drawable.alertdialog_right_selector);btn_neg.setVisibility(View.VISIBLE);btn_neg.setBackgroundResource(R.drawable.alertdialog_left_selector);img_line.setVisibility(View.VISIBLE);}if (showPosBtn && !showNegBtn) {btn_pos.setVisibility(View.VISIBLE);btn_pos.setBackgroundResource(R.drawable.alertdialog_single_selector);}if (!showPosBtn && showNegBtn) {btn_neg.setVisibility(View.VISIBLE);btn_neg.setBackgroundResource(R.drawable.alertdialog_single_selector);}}public void show() {setLayout();dialog.show();}}
- 2015-01-03下载
- 积分:1