Tag: java

用逗号分隔外引号

我的程序从文件中读取一行。 这行包含逗号分隔的文本,如: 123,test,444,"don't split, this",more test,1 我想分裂的结果是这样的: 123 test 444 "don't split, this" more test 1 如果我使用String.split(",") ,我会得到这个: 123 test 444 "don't split this" more test 1 换句话说:子串中的逗号"don't split, this"不是分隔符。 如何处理这个? 在此先感谢.. Jakob

JavaBean属性命名约定在哪里定义?

Spring框架API文档说: 使用的惯例是根据JavaBeans属性的命名规则返回类的非大写短名称:所以,com.myapp.Product成为产品; com.myapp.MyProduct成为myProduct; com.myapp.UKProduct成为UKProduct。 我看着太阳网站find一个定义,但没有find一个。 我想知道在一开始就有多个大写字母的规则。 如果第二个字符是大写字母,规则是第一个字符是大写吗? 背景是,我想根据对象的types自动生成可用于HTML模板的variables名称。 例如:class:SomeName – > object:someName。

如何读取服务器套接字JAVA中的所有InputStream

我在我的项目之一使用Java.net。 我写了一个从客户端获取inputStream的App Server。 但有时候,我的(缓冲的)InputStream无法获得客户端发送给我的服务器的所有OutputStream。 我怎么能写一个等待或这样的事情,我的InputStream获取客户端的所有OutputStream? (我的InputStream不是一个string) private Socket clientSocket; private ServerSocket server; private BufferedOutputStream outputS; private BufferedInputStream inputS; private InputStream inBS; private OutputStream outBS; server = new ServerSocket(30501, 100); clientSocket = server.accept(); public void getStreamFromClient() { try { outBS = clientSocket.getOutputStream(); outputS = new BufferedOutputStream( outBS); outputS.flush(); inBS = clientSocket.getInputStream(); inputS = new BufferedInputStream( inBS […]

Java:如何停止线程?

有什么办法阻止从线程的另一个线程? 就像,如果我运行一个线程来运行该线程,并导致该线程停止? 会阻止另一个线程吗? 有没有一个方法来停止从没有循环内线程? 例如,如果你正在下载理想情况下,你会想要使用循环,如果我使用循环,我不会暂停它,直到到达循环的结尾。

java.sql.SQLException:用尽的结果集

我得到错误java.sql.SQLException:Exhausted ResultSet对Oracle数据库运行查询。 连接通过Websphere中定义的连接池。 执行的代码如下所示: if (rs! = null) ( while (rs.next ()) ( count = rs.getInt (1); ) ) 我注意到结果集包含数据(rs.next()) 谢谢

如何限制JFileChooser目录?

我想限制我的用户到一个目录及其子目录,但“父目录”button允许他们浏览到任意目录。 我应该怎么做呢?

将string转换为双 – Java

将逗号(例如:835,111.2)转换为Double实例的最简单正确的方法是什么? 谢谢。

InflateException:二进制XML文件行#1:由于OutOfMemoryError引起的类错误

这是我的代码: input.xml (布局文件夹) <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:background="@drawable/background_main" > <ImageView android:id="@+id/logo_image" android:background="@drawable/background_green" android:src="@drawable/titleimage" android:layout_width="match_parent" android:layout_height="50dp" /> <ScrollView android:id="@+id/scroller" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/logo_image" android:layout_marginTop="10dp" > <TableLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:stretchColumns="*" > <TableRow android:id="@+id/device_type_row" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="5dp" android:paddingBottom="5dp" android:layout_marginRight="5dp" > <RadioButton android:id="@+id/device_type_radio" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceSmall" android:text="@string/device_type" /> <RadioGroup android:id="@+id/device_type_radio_selection" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> <RadioButton android:id="@+id/radioIos" android:layout_width="wrap_content" android:layout_height = […]

设置和获取方法vs公共variables的优点

可能重复: 为什么使用getters和setter? 有没有什么好处,让方法访问你的类中的私有variables,而不是公开的variables? 比如第二种情况比第一种好? //Case 1 public class Shoe{ public int size; } //Case 2 public class Shoe{ private int size; public int getSize(){ return size; } public void setSize(int sz){ size = sz; } }

错误:java.lang.NoSuchMethodError:org.objectweb.asm.ClassWriter。<init>(I)V

我正在开发一个小的Spring应用程序。 我必须将学生信息的详细信息存储在数据库中。 我开发了一个SimpleFormController。 我使用了NetBeans + Hibernate mapping + Spring。 当我部署项目时,会发生以下错误。 我的spring-config-db-applicationContext.xml如下所示: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> <!– Hibernate session factory –> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <constructor-arg index="0"> <value>${driverClassName}</value> </constructor-arg> <constructor-arg index="1"> <value>${url}</value> </constructor-arg> <constructor-arg index="2"> <value>${username}</value> </constructor-arg> <constructor-arg index="3"> <value>${password}</value> </constructor-arg> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource"/> </property> <!– […]