User Ron Tuffin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T20:23:49Zhttp://stackoverflow.com/feeds/user/939http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1900477/can-one-initialise-a-java-string-with-a-single-repeated-character-to-a-specific-l1Can one initialise a java String with a single repeated character to a specific length.Ron Tuffin2009-12-14T11:52:40Z2009-12-14T11:58:11Z
<p>I'd like to create a function that has the following signature: </p>
<pre><code>public String createString(int length, char ch)
</code></pre>
<p>It should return a string of repeating characters of the specified length.</p>
<p>For example if length is 5 and ch is 'p' the return value should be </p>
<pre><code>ppppp
</code></pre>
<p>Is there a way to do this without looping until it is the required length?<br>
And without any externally defined constants?</p>
http://stackoverflow.com/questions/157944/how-to-create-arraylist-arraylistt-from-array-t-in-java18How to create ArrayList (ArrayList<T> from array (T[]) in JavaRon Tuffin2008-10-01T14:38:32Z2009-12-04T07:35:36Z
<p>I have an array that is initialised like:</p>
<pre><code>Element[] array = {new Element(1),new Element(2),new Element(3)};
</code></pre>
<p>I would like to convert this array into an object of the ArrayList class.</p>
<pre><code>ArrayList<Element> arraylist = ???;
</code></pre>
<p>I am sure I have done this before, but the solution is sitting just at the edge of my memory.</p>
http://stackoverflow.com/questions/1838490/define-constraints-on-the-context-in-which-as-class-is-instantiated/1838509#18385092Answer by Ron Tuffin for Define constraints on the context in which as class is instantiatedRon Tuffin2009-12-03T08:34:33Z2009-12-03T08:34:33Z<p>I don't think so. But I have no definitive proof.</p>
http://stackoverflow.com/questions/1629042/what-are-the-minimum-requirements-for-writing-a-java-client-for-mqseries1What are the minimum requirements for writing a Java client for MQSeries?Ron Tuffin2009-10-27T06:27:04Z2009-11-19T22:35:25Z
<p>I need to write a simple MQSeries client in Java.</p>
<p>The client just has to connect to the queue and pull off the next message.</p>
<p>I have done this before a number of years ago and have all the sample code etc.</p>
<p>All I remember needing are the three jar files:</p>
<ul>
<li>com.ibm.mq.iiop.jar</li>
<li>com.ibm.mq.jar</li>
<li>connector.jar</li>
</ul>
<p>I have been doing some reading and a lot of people talk about a properties file, but I have no recollection of this from my past experience.</p>
<p>And so on to my question:</p>
<p>What is the <em>absolute minimum</em> I need on my system to develop, test and ultimately deploy a simple MQSeries client?</p>
<p>And where can I find (download) these things?</p>
<p>NOTE: This question is related to but not the same as <a href="http://stackoverflow.com/questions/782314/on-windows-where-is-a-mqji-properties-for-me-to-use">this</a> one.</p>
http://stackoverflow.com/questions/1762540/optimise-aggregation-query/1762569#17625691Answer by Ron Tuffin for Optimise aggregation queryRon Tuffin2009-11-19T11:09:49Z2009-11-19T11:09:49Z<p>Can you not do something like this</p>
<pre><code>SELECT sum(amount),count(1), txnType
FROM Txn_log
WHERE gid = @gid AND
txnType in (3,5,11,20)
group by txnType
</code></pre>
<p>and then handle the rest of it programmatically?</p>
http://stackoverflow.com/questions/1741646/how-do-i-do-a-sql-between-where-the-date-and-time-are-stored-seperatly-as-integer2How do I do a SQL BETWEEN where the date and time are stored seperatly as integers.Ron Tuffin2009-11-16T11:37:07Z2009-11-16T13:16:21Z
<p>At the company I work for date and time values have always been stored separately in integer fields, so for example 8:30 this morning would be stored like this:</p>
<ul>
<li>date of 20091116 and </li>
<li>time of 83000 (no leading zeros as it is an integer field)</li>
</ul>
<p>Whereas the time as I type this the time would be stored like this </p>
<ul>
<li>date 20091116</li>
<li>time 133740</li>
</ul>
<p>Unfortunately if i would like add a BETWEEN to the WHERE clause of a query it introduces a slight complication.</p>
<p>Currently the system I work on is using a query something like this:</p>
<pre><code>declare @minDate int, @minTime int, @maxDate int, @maxTime int
select @minDate = 20091102
select @minTime = 64841
select @maxDate = 20091105
select @maxTime = 102227
SELECT *
FROM transactions
WHERE
(
(
txnDate = @minDate AND
txnTime >= @minTime
) OR
txnDate > @minDate
) AND
(
(
txnDate = @maxDate AND
txnTime <= @maxTime
) OR
txnDate < @maxDate
)
</code></pre>
<p>Bearing in mind that I can't change the design of the database...<br>
Is there a better way to do this?</p>
http://stackoverflow.com/questions/1665834/how-can-i-initialize-a-string-array-with-length-0-in-java1How can I initialize a String array with length 0 in Java?Ron Tuffin2009-11-03T07:49:10Z2009-11-03T08:13:05Z
<p>The Java Docs for the method<br />
<code>String[] java.io.File.list(FilenameFilter filter)</code><br />
includes this in the returns description:</p>
<blockquote>
<p>The array will be empty if the directory is empty or if no names were accepted by the filter.</p>
</blockquote>
<p>How do I do a similar thing and initialize a String array (or any other array for that matter) to have a length 0?</p>
http://stackoverflow.com/questions/1665834/how-can-i-initialize-a-string-array-with-length-0-in-java/1665836#16658360Answer by Ron Tuffin for How can I initialize a String array with length 0 in Java?Ron Tuffin2009-11-03T07:49:57Z2009-11-03T08:13:05Z<p>Ok I actually found the answer but thought I would 'import' the question into SO anyway</p>
<p><code>String[] files = new String[0];</code><br />
or<br />
<code>int[] files = new int[0];</code></p>
http://stackoverflow.com/questions/1629042/what-are-the-minimum-requirements-for-writing-a-java-client-for-mqseries/1629620#16296200Answer by Ron Tuffin for What are the minimum requirements for writing a Java client for MQSeries?Ron Tuffin2009-10-27T09:22:53Z2009-10-27T09:22:53Z<p>Ok it looks like you need the three jars I mentioned in the question as well as a properties file.</p>
<ul>
<li>com.ibm.mq.iiop.jar</li>
<li>com.ibm.mq.jar</li>
<li>connector.jar</li>
<li>mqji.properties</li>
</ul>
<p>Unless you have access to these things already the only way I could figure out to get them was to download and install the FULL trial version for MQSeries from IBM:</p>
<p><a href="http://www14.software.ibm.com/webapp/download/search.jsp?pn=WebSphere+MQ" rel="nofollow">http://www14.software.ibm.com/webapp/download/search.jsp?pn=WebSphere+MQ</a></p>
<p>If that link dies over time I found it by just going to <a href="http://www.ibm.com" rel="nofollow">www.ibm.com</a> and then following the menu from "Support & Downloads" -> "Download" -> "Trials and demos" and then choosing "WebSphere MQ" from the list.</p>
<p>Once the install is done, you have all the jars you need in the java/lib folder below where the installation happened. The Jars in this version are different o the jars I mention above I suspect because of version differences.</p>
<p>The properties file was not installed with the install (perhaps the new versions does not need this file), but it can be found <a href="http://stackoverflow.com/questions/782314/on-windows-where-is-a-mqji-properties-for-me-to-use/1629495#1629495">here</a>.</p>
http://stackoverflow.com/questions/782314/on-windows-where-is-a-mqji-properties-for-me-to-use/1629495#16294950Answer by Ron Tuffin for On Windows - where is a mqji.properties for me to use?Ron Tuffin2009-10-27T08:53:31Z2009-10-27T08:53:31Z<p>Here is a copy of my mqji.properties file. </p>
<p>Copy and paste into a text editor.<br>
Save as mqji.properties<br>
Put the directory that this file is in into your CLASSPATH.</p>
<pre><code># mqjiEn_US.properties
# Messages produced by the Websphere MQ Java interface classes
# (shared by bindings and by client)
# Messages beginning with MQJI are explanations for exceptions
# Messages beginning with MQJE are errors
#
# From class MQDistributionList
#
1=MQJI001: Queue manager object was null.
2=MQJI002: Not connected to a queue manager.
3=MQJI003: No object records supplied.
4=MQJI004: No response records supplied.
5=MQJI005: Not enough response records supplied.
6=MQJI006: An object or response record was null.
7=MQJI007: openResponse parameter was null.
8=MQJI008: Null message passed to put.
9=MQJI009: Null put message options passed to put.
10=MQJI010: Number of message trackers and response records do not match.
11=MQJI011: The distribution list has been closed.
#
# From class MQEnvironment
#
12=Websphere MQ Client for Java v5.3
#
# From class MQGetMessageOptions
#
13=MQJI013: Unsupported version number - {0}
14=MQJI014: Insufficient data received from queue manager.
15=MQJI015: Erroneous eyecatcher : {0}
#
# From class MQManagedObject
#
16=MQJI016: Object has been closed.
17=MQJI017: No selectors specified.
#
# From class MQMD
#
18=MQJI015: Erroneous eyecatcher : {0}
19=MQJI018: Array copy error in MQMD
#
# From class MQMessage
#
20=MQJI019: Malformed UTF string in MQMessage::readLine
21=MQJI020: Unsupported codeset : {0}
22=MQJI021: String index error occurred during codeset conversion
23=MQJI015: Erroneous eyecatcher : {0}
#
# From class MQOD
#
24=MQJI022: Unmatched number of object and response records
#
# From class MQPutMessageOptions
#
25=MQJI023: Null MQMessageTracker object supplied
#
# From class MQMessageTracker
#
26=MQJI024: Array copy error in MQMessageTracker
#
# From class MQQueue
#
27=MQJI025: Null MQMessage passed to get
28=MQJI026: Null MQGetMessageOptions passed to get
29=MQJI027: The queue has been closed
30=MQJI028: Null MQMessage passed to put
31=MQJI029: Null MQPutMessageOptions passed to put
#
# From class MQQueueManager
#
32=MQJI030: The queue manager does not support distribution lists.
#
# From class MQS390FloatSupport
#
33=MQJI031: Number outside of range for double precision S/390 Float
#
# From class MQS390PackedDecimalSupport
#
34=MQJI032: Invalid sign nibble in packed decimal
35=MQJI033: Packed Decimal digit outside of range 0-9
36=MQJI034: Outside of range for short packed decimal (+/-999)
37=MQJI035: Outside of range for integer packed decimal (+/-9999999)
38=MQJI036: Outside of range for long packed decimal (0+/-999999999999999)
#
# From class MQException
#
39=MQJE001: Completion Code {0}, Reason {1}
40=MQJE001: An MQException occurred: Completion Code {0}, Reason {1}\n{2}
#
# Messages produced by client only classes...
#
41=MQJI037: Error occurred during Websphere MQ API call - reason code {0}
42=MQJI038: Unexpected internal error during string index processing
43=MQJE002: Socket output stream was null
44=MQJE003: IO error transmitting message buffer
45=MQJE004: Socket input stream was null
46=MQJE005: TSH eyecatcher not found. Eyecatcher was {0}
47=MQJE006: Internal error during array copy
48=MQJE007: IO error reading message data
49=MQJE008: IOException whilst sending status message
50=MQJE009: Failed to build API header
51=MQJE010: Unknown host: {0}
52=MQJE011: Socket connection attempt refused
53=MQJE012: Security error - cannot connect to host {0}
54=MQJE013: Error accessing socket streams
55=MQJE014: Control Point rejected connection
56=MQJE015: Error connecting to Control Point
57=MQJE016: MQ queue manager closed channel immediately during connect\n\Closure reason = {0}
58=MQJE017: MQ queue manager sent status error {0} during connect
59=MQJE018: Protocol error - unexpected segment type received
60=MQJE019: Error creating initial data segment
61=MQJE020: CCSID not supported by queue manager
62=MQJE021: Encoding not supported by queue manager
63=MQJE022: FAP level not supported by queue manager
64=MQJE023: Negotiation failed on maximum messages per batch
65=MQJE024: Sequence wrap value not supported by queue manager
66=MQJE025: Channel closed after two initial changes. Closure reason {0}
67=MQJE026: Queue manager sent status error {0} during connect
68=MQJE027: Queue manager security exit rejected connection with error code {0}
69=MQJE028: Channel closed during security exchanges
70=MQJE029: Unexpected message type sent by queue manager
71=MQJE030: IOException during security flows
72=MQJE031: Security exit closed the channel
73=MQJE032: Queue manager security exit rejected connection with reason code {0}
74=MQJE033: A required security flow was not sent by the queue manager
75=MQJE034: Unexpected message type sent by queue manager
76=MQJE035: Negotiated maximum transmission size is too small
77=MQJE036: Queue manager rejected connection attempt
78=MQJE037: Remote queue manager closed the connection
79=MQJE038: Unexpected segment type {0} received
80=MQJE039: IOException whilst building connection data stream
81=MQJE040: Channel closed by exit
82=MQJE041: Unsupported version number - (0)
83=MQJE042: Erroneous eyecatcher: {0}
84=MQJE043: Insuffucient data received from queue manager
85=MQJE044: Array copy error in MQMD
86=MQJE045: Malformed UTF string
87=MQJE046: Unsupported codeset : {0}
88=MQJE047: String index error occurred during codeset conversion
89=MQJE048: Invalid sign nibble in packed decimal
90=MQJE049: Packed Decimal digit outside of range 0-9
91=MQJE050: Outside of range for short packed decimal (+/-999)
92=MQJE051: Outside of range for integer packed decimal (+/-9999999)
93=MQJE052: Outside of range for long packed decimal (0+/-999999999999999)
94=Websphere MQ Bindings for Java v5.3
95=MQJE053: The Websphere MQ Bindings for Java library could not be loaded
96=MQJE054: The queue manager does not support distribution lists
97=MQJE055: The queue manager does not support version 2 Websphere MQ API structures
98=MQJE056: Initial negotiation failure
99=MQJE057: Channel closed during security exchanges
100=MQJE058: Invalid number of object or response records
101=MQJE059: String index error
102=MQJE060: Could not find class {0}
103=MQJE061: Could not find field {0}
104=MQJE062: Could not find method {0}
#
# Messages used by MQManagedConnectionJ11, ManagedConnectionFactories
# and MQManagedConnectionMetaData
#
105=MQJI039: Invalid ConnectionRequestInfo object
106=MQJI040: MQManagedConnection already destroyed
107=MQJI041: Method {0} is not supported by Websphere MQ Classes for Java
108=MQJI042: MQManagedConnection is not reusable
#
# Messages from MQManagedConnectionMetaData
#
109=IBM Websphere MQ
110=Command Level {0}
#
# Messages from MQXAi
#
111=Security manager prevented access to native methods library for MQ XA support.
112=Failed to load native methods library for MQ XA support.
#
# Messages from MQXAResource
#
113=xa_open failed
114=XA operation failed, see errorCode
115=XAResource closed
#
# Messages produced by com.ibm.mq.MQMsg2
#
116=MQJE063: Unsupported character set {0}
117=MQJE064: Unsupported version of MQMD structure {0}
118=MQJE065: Inconsistent internal state detected
# message when server doesn't support client XA
119=client connection not XA enabled
#
# Messages produced via SSL options on a client connection
#
120=MQJE066: {0} provided as an unsupported object type
121=MQJE067: Peer name {0} did not match requested name {1}
122=MQJE068: Server certificate has been revoked
123=MQJE069: Unable to contact CertStore
124=MQJE070: SSL Protocol error: Channel not configured for SSL?
</code></pre>
http://stackoverflow.com/questions/1572708/is-conversion-to-string-using-int-value-bad-practice/1572749#15727490Answer by Ron Tuffin for Is conversion to String using ("" + <int value>) bad practice?Ron Tuffin2009-10-15T14:32:15Z2009-10-15T14:51:08Z<p>Right off the bat all I can think of is that in the your first example more String objects will be created than in the second example (and an additional StringBuilder to actually perform the concatenation).</p>
<p>But what you are actualy trying to do is create a String object from a int not concatenate a String with an int, so go for the:</p>
<pre><code>String.valueOf(...);
</code></pre>
<p>option,</p>
<p>So yes your first option is bad practice!</p>
http://stackoverflow.com/questions/1098117/can-one-do-a-for-each-loop-in-java-in-reverse-order7Can one do a for each loop in java in reverse order?Ron Tuffin2009-07-08T13:34:07Z2009-08-13T09:45:08Z
<p>I need to run through a List in reverse order using Java. </p>
<p>So where this does it forwards:</p>
<pre><code>for(String string: stringList){
//...do something
}
</code></pre>
<p>Is there some way to iterate the stringList in reverse order using the <em>for each</em> syntax?</p>
<p>For clarity: I know how to iterate a list in reverse order but would like to know (for curiosity's sake ) how to do it in the <em>for each</em> style.</p>
http://stackoverflow.com/questions/1239759/transact-sql-case-over-a-variable-length-inputexpression0Transact SQL CASE over a variable length input_expression Ron Tuffin2009-08-06T15:41:07Z2009-08-07T13:03:18Z
<p>I have to produce an ad hock report on the number of transactions made with different credit card types. For the purposes of the report it is fine to assume that all credit cards that start with a 4 are VISA cards and that those that start with a 5 are MasterCard.</p>
<p>This query works well for the above distinctions:</p>
<pre><code>select card_type =
case substring(pan,1,1)
when '4' then 'VISA'
when '5' then 'MasterCard'
else 'unknown'
end,count(*),
sum(amount)
from transactions
group by card_type
</code></pre>
<p>However in our situation (not sure how this works world wide) all cards that start with a 3 can be considered Diners Club Cards except for those that start with a 37 which are AMEX cards.</p>
<p>Extending the above query like this seems like a complete hack</p>
<pre><code>select card_type =
case substring(pan,1,2)
when '30' then 'Diners'
...
when '37' then 'AMEX'
...
when '39' then 'Diners'
when '40' then 'VISA'
...
when '49' then 'VISA'
when '50' then 'MasterCard'
...
when '59' then 'MasterCard'
else 'unknown'
end,count(*),
sum(amount)
from transactions
group by card_type
</code></pre>
<p>Is there an elegant way of grouping by the first digit in all cases except where the first two digits match the special case?</p>
<p><em>I also have no idea how to</em> Title <em>this question if anyone wants to help out...</em></p>
<p><strong>EDIT</strong>: I had the values for MasterCard and VISA mixed up, so just to be correct :)</p>
http://stackoverflow.com/questions/1205995/what-is-the-list-of-valid-suppresswarnings-warning-names-in-java5What is the list of valid @SuppressWarnings warning names in Java?Ron Tuffin2009-07-30T11:25:34Z2009-08-04T14:17:29Z
<p>What is the list of valid @SuppressWarnings warning names in Java?</p>
<p>The bit that come between the ("") in @SuppressWarnings("").</p>
http://stackoverflow.com/questions/1176837/sql-to-determine-distinct-periods-of-sequential-days-of-access1SQL to determine distinct periods of sequential days of access?Ron Tuffin2009-07-24T10:27:56Z2009-07-25T08:40:54Z
<p><a href="http://stackoverflow.com/users/1/jeff-atwood">Jeff</a> recently asked <a href="http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access">this question</a> and got some great answers.</p>
<p>Jeff's problem revolved around finding the users that have had (n) consecutive days where they have logged into a system. Using a database table structure as follows:</p>
<pre>
Id UserId CreationDate
------ ------ ------------
750997 12 2009-07-07 18:42:20.723
750998 15 2009-07-07 18:42:20.927
751000 19 2009-07-07 18:42:22.283
</pre>
<p>Read <a href="http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access">the original question</a> first for clarity and then...</p>
<p>I was intrigued by the problem of determining how many <em>distinct</em> (n)-day periods for a user.</p>
<p>Could one craft a speedy SQL query that could return a list of users and the number of distinct (n)-day periods they have?</p>
<p><strong>EDIT</strong>: as per a comment below If someone has 2 consecutive days, then a gap, then 4 consecutive days, then a gap, then 8 consecutive days. It would be 3 "distinct 4 day periods". The 8 day period should count as two back-to-back 4 day periods.</p>
http://stackoverflow.com/questions/1176837/sql-to-determine-distinct-periods-of-sequential-days-of-access/1178178#11781780Answer by Ron Tuffin for SQL to determine distinct periods of sequential days of access?Ron Tuffin2009-07-24T14:48:01Z2009-07-24T14:55:00Z<p>This works quite nicely with the test data I have.</p>
<pre><code>DECLARE @days int
SET @days = 30
SELECT DISTINCT l.UserId, (datediff(d,l.CreationDate, -- Get first date in contiguous range
(
SELECT min(a.CreationDate ) as CreationDate
FROM UserHistory a
LEFT OUTER JOIN UserHistory b
ON a.CreationDate = dateadd(day, -1, b.CreationDate ) AND
a.UserId = b.UserId
WHERE b.CreationDate IS NULL AND
a.CreationDate >= l.CreationDate AND
a.UserId = l.UserId
) )+1)/@days as cnt
INTO #cnttmp
FROM UserHistory l
LEFT OUTER JOIN UserHistory r
ON r.CreationDate = dateadd(day, -1, l.CreationDate ) AND
r.UserId = l.UserId
WHERE r.CreationDate IS NULL
ORDER BY l.UserId
SELECT UserId, sum(cnt)
FROM #cnttmp
GROUP BY UserId
HAVING sum(cnt) > 0
</code></pre>
http://stackoverflow.com/questions/1136035/can-one-automaticaly-create-javadoc-tags-for-an-entire-eclipse-project0Can one automaticaly create javadoc tags for an entire Eclipse project?Ron Tuffin2009-07-16T07:50:52Z2009-07-16T08:26:44Z
<p>I know one can use '<alt><shift>J' to create tags for a single code element (class method for example).</p>
<p>But is there a way to automaticaly create these tags for every class in the entire project? Or even just at package or class level?</p>
http://stackoverflow.com/questions/1127704/getting-maven-to-start-jetty-tapestry-tutorial1Getting maven to start jetty (Tapestry Tutorial)Ron Tuffin2009-07-14T20:10:47Z2009-07-16T00:02:46Z
<p>I'm trying to work through the Tapestry tutorial.</p>
<p>I think I got everything set up right and so far so good but I get to the <a href="http://tapestry.apache.org/tapestry5/tutorial1/first.html" rel="nofollow">part</a> where the tut rather glibly states:</p>
<blockquote>
<p>Change into the newly created
directory, and execute the command:</p>
<p><code>mvn jetty:run</code></p>
<p>Again, the first time, there's a
dizzying number of downloads, but
before you know it, the Jetty servlet
container is up and running.</p>
</blockquote>
<p>I wish! that only results in the following error.</p>
<blockquote>
<p>The plugin
'org.apache.maven.plugins:maven-jetty-plugin'
does not exist or no valid version
could be found</p>
</blockquote>
<p>I have maven-2.2.0, Jetty-5.1.9</p>
<p>The only thing I did different to what the tutorial stated was I used <em>archetype:generate</em> instead of <em>archetype:create</em> as <em>create</em> failed and noted it was deprecated and suggested <em>generate</em> instead.</p>
http://stackoverflow.com/questions/1073531/how-does-one-set-up-javadoc-doccheck-as-an-eclipse-plugin1How does one set up JavaDoc DocCheck as an Eclipse plugin?Ron Tuffin2009-07-02T09:58:16Z2009-07-02T10:27:29Z
<p>I have recently started using DocCheck for checking the validity of JavaDoc's in code files.</p>
<p>Is there some way to set DocCheck up as an eclipse plugin?</p>
http://stackoverflow.com/questions/1045958/what-is-the-jtds-jdbc-connect-url-to-ms-sql-server-2005-express1What is the jTDS JDBC Connect URL to MS SQL Server 2005 Express Ron Tuffin2009-06-25T20:06:32Z2009-06-26T03:35:32Z
<p>I'm trying to connect to a MS SQL Server 2005 Express database that is running on the local host from a java program.</p>
<p>I have tried the same connect URL (below) that I used on another system (same jave code) that was running MS SQL Server 2000. But that does not work.</p>
<pre><code>jdbc:jtds:sqlserver://127.0.0.1:1433/Finance
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/979932/read-unicode-text-files-with-java1Read unicode text files with javaRon Tuffin2009-06-11T08:16:12Z2009-06-11T09:06:54Z
<p>Real simple question really. I need to read a Unicode text file in a Java program.</p>
<p>I am used to using plain ASCII text with a BufferedReader FileReader combo which is obviously not working :(</p>
<p>I know that I can read a String in the 'traditional' way using a Buffered Reader and then convert it using something like:</p>
<pre><code>temp = new String(temp.getBytes(), "UTF-16");
</code></pre>
<p>But is there a way to wrap the Reader in a 'Converter'?</p>
<p>EDIT: the file starts with FF FE </p>
http://stackoverflow.com/questions/593996/how-to-suppress-java-compiler-warnings-for-specific-functions3How to suppress JAVA compiler warnings for specific functionsRon Tuffin2009-02-27T08:42:45Z2009-05-13T08:36:06Z
<p>We are always taught to make sure we use a <em>break</em> in switch statements to avoid fall-through.</p>
<p>The JAVA compiler warns about these situations to help us not make trivial (but drastic) errors.</p>
<p>I have however used case fall-through as a feature (We don't have to get into it here but it provides a very elegant solution). </p>
<p>However the compiler spits out massive amounts of warnings that may obscure warnings that I need to know about. I know how I can change the compiler to ignore ALL fall through warnings, but I would like to implement this on a method by method basis to avoid missing a place where I did not intend for fall-through to happen.</p>
<p>Any Ideas?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/415996/what-is-the-best-way-to-find-specific-tokens-in-a-string-in-java/416151#4161511Answer by Ron Tuffin for What is the best way to find specific tokens in a string (in Java)?Ron Tuffin2009-01-06T11:16:23Z2009-01-06T11:16:23Z<p>It is a bit 'Brute Force' and makes some assumptions but this works.</p>
<pre><code>public class SegmentFinder
{
public static void main(String[] args)
{
String string = "abc<B>def</B>ghi<B>j</B>kl";
String startRegExp = "<B>";
String endRegExp = "</B>";
int segmentCounter = 0;
int currentPos = 0;
String[] array = string.split(startRegExp);
for (int i = 0; i < array.length; i++)
{
if (i > 0) // Ignore the first one
{
segmentCounter++;
//this assumes that every start will have exactly one end
String[] array2 = array[i].split(endRegExp);
int elementLenght = array2[0].length();
System.out.println("segment["+segmentCounter +"] = "+ (currentPos+1) +","+ (currentPos+elementLenght) );
for(String s : array2)
{
currentPos += s.length();
}
}
else
{
currentPos += array[i].length();
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/386006/how-to-order-a-sql-query-with-grouped-rows/386243#386243-1Answer by Ron Tuffin for How to Order a SQL Query with grouped rowsRon Tuffin2008-12-22T13:19:35Z2009-01-05T06:35:33Z<p><a href="http://stackoverflow.com/questions/247858/coalesce-alternative-in-access-sql">Apparently</a> NZ(Value, ValueToReturnIfNull) can be used on MSAccess as a substitute for ISNULL so ...</p>
<pre><code>SELECT a.*
FROM this_table AS a
INNER JOIN
(
SELECT category,min(NZ(priority,999999)) as min_priority_in_cat
FROM this_table group by category
) AS b ON a.category = b.category
ORDER BY b.min_priority_in_cat, a.category, NZ(a.priority,999999)
</code></pre>
http://stackoverflow.com/questions/355425/date-arithmetic-in-dos-scripting1Date arithmetic in dos scriptingRon Tuffin2008-12-10T08:36:43Z2008-12-10T10:24:26Z
<p>I need to write a script to change a filename from aDate.txt to bDate.txt where:</p>
<ul>
<li>aDate is the current system date in <em>yyyymmdd</em> format and </li>
<li>bDate is the current system date - 1 in <em>yyyymmdd</em> format.</li>
</ul>
<p>I currently have:</p>
<pre><code>set yy=%date:~6,2%
set mm=%date:~3,2%
set dd=%date:~0,2%
if "%date:~6,1%"==" " set yy=0%yy:~1,1%
if "%date:~3,1%"==" " set mm=0%mm:~1,1%
if "%date:~0,1%"==" " set dd=0%dd:~1,1%
SET sys_date=20%yy%%mm%%dd%
ECHO %sys_date%
REM still have to do this bit properly
SET sys_date_yesterday=%sys_date%a
move %sys_date%.txt %sys_date_yesterday%.txt
</code></pre>
<p>but I have no idea how to do the date -1 thing (other than the long winded) subtract 1 from the day and if that is = 0 then subtract one from the month and set the day = to the last day of the new month and so on for years.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/355425/date-arithmetic-in-dos-scripting/355622#3556221Answer by Ron Tuffin for Date arithmetic in dos scriptingRon Tuffin2008-12-10T10:24:26Z2008-12-10T10:24:26Z<p>This also works: </p>
<p><a href="http://www.robvanderwoude.com/datetiment.html#Yesterday" rel="nofollow">http://www.robvanderwoude.com/datetiment.html#Yesterday</a></p>
<p>It is very complete in that it checks the registry for local date format settings and uses those when creating the yesterday date.</p>
http://stackoverflow.com/questions/294382/java-charbuffer-vs-char/295190#2951903Answer by Ron Tuffin for Java: CharBuffer vs. char[]Ron Tuffin2008-11-17T09:42:28Z2008-11-20T07:15:35Z<p>I wanted to mini-benchmark this comparison.</p>
<p>Below is the class I have written.</p>
<p>The thing is I can't believe that the CharBuffer performed so badly. What have I got wrong?</p>
<p><em>EDIT: Since the 11th comment below I have edited the code and the output time, better performance all round but still a significant difference in times. I also tried out2.append((CharBuffer)buff.flip()) option mentioned in the comments but it was much slower than the write option used in the code below.</em></p>
<p>Results: (time in ms)<BR>
char[] : 3411<BR>
CharBuffer: 5653</p>
<pre><code>public class CharBufferScratchBox
{
public static void main(String[] args) throws Exception
{
// Some Setup Stuff
String smallString =
"1111111111222222222233333333334444444444555555555566666666667777777777888888888899999999990000000000";
StringBuilder stringBuilder = new StringBuilder();
for (int i = 0; i < 1000; i++)
{
stringBuilder.append(smallString);
}
String string = stringBuilder.toString();
int DEFAULT_BUFFER_SIZE = 1000;
int ITTERATIONS = 10000;
// char[]
StringReader in1 = null;
StringWriter out1 = null;
Date start = new Date();
for (int i = 0; i < ITTERATIONS; i++)
{
in1 = new StringReader(string);
out1 = new StringWriter(string.length());
char[] buf = new char[DEFAULT_BUFFER_SIZE];
int n;
while ((n = in1.read(buf)) >= 0)
{
out1.write(
buf,
0,
n);
}
}
Date done = new Date();
System.out.println("char[] : " + (done.getTime() - start.getTime()));
// CharBuffer
StringReader in2 = null;
StringWriter out2 = null;
start = new Date();
CharBuffer buff = CharBuffer.allocate(DEFAULT_BUFFER_SIZE);
for (int i = 0; i < ITTERATIONS; i++)
{
in2 = new StringReader(string);
out2 = new StringWriter(string.length());
int n;
while ((n = in2.read(buff)) >= 0)
{
out2.write(
buff.array(),
0,
n);
buff.clear();
}
}
done = new Date();
System.out.println("CharBuffer: " + (done.getTime() - start.getTime()));
}
}
</code></pre>
http://stackoverflow.com/questions/272045/how-do-i-delete-all-the-records-in-a-table-that-have-corresponding-records-in-ano4How do I delete all the records in a table that have corresponding records in another tableRon Tuffin2008-11-07T13:23:48Z2008-11-10T08:47:42Z
<p>I have two tables A and B. I would like to delete all the records from table A that are returned in the following query:</p>
<pre><code>SELECT A.*
FROM A , B
WHERE A.id = B.a_id AND
b.date < '2008-10-10'
</code></pre>
<p>I have tried:</p>
<pre><code>DELETE A
WHERE id in (
SELECT a_id
FROM B
WHERE date < '2008-10-10')
</code></pre>
<p>but that only works if the inner select actually returns a value (not if the result set is empty)</p>
<p><strong>NB:</strong> this has to work on <strong>both SQLServer AND MySQL</strong></p>
<p>EDIT: More information</p>
<p>The above delete works 100% on SQLServer</p>
<p>When running it on MySQL I get an "error in you SQL syntax" message which points to the start of the SELECT as the problem. if I substitute the inner select with (1,2) then it works. </p>
<p><em>@Kibbee You are right it actually makes no difference if the inner select returns rows or not.</em></p>
<p><em>@Fred I get a "not unique table.alias: a" message</em></p>
http://stackoverflow.com/questions/239202/during-execution-how-can-a-java-program-tell-how-much-memory-it-is-using8During execution, how can a java program tell how much memory it is using?Ron Tuffin2008-10-27T06:25:12Z2008-11-10T08:41:53Z
<p>During execution, how can a java program tell how much memory it is using?</p>
<p>I don't care how efficient it is!</p>
http://stackoverflow.com/questions/271888/best-practice-for-handling-null-strings-from-database-in-java/271921#2719211Answer by Ron Tuffin for Best practice for handling null strings from database (in Java)Ron Tuffin2008-11-07T12:28:12Z2008-11-07T12:28:12Z<p>From a SQL angle try:</p>
<pre><code>select ISNULL(column_name,'') from ...
</code></pre>
http://stackoverflow.com/questions/1900477/can-one-initialise-a-java-string-with-a-single-repeated-character-to-a-specific-l/1900492#1900492Comment by Ron Tuffin on Can one initialise a java String with a single repeated character to a specific length.Ron Tuffin2009-12-15T06:02:46Z2009-12-15T06:02:46ZI accepted the answer I did because it was the first correct answer. Thanks @Bozho (cool name btw) for the formating edit. http://stackoverflow.com/questions/1879562/sorting-vector-in-java/1879772#1879772Comment by Ron Tuffin on Sorting vector in javaRon Tuffin2009-12-10T09:30:57Z2009-12-10T09:30:57Znot so that you can cheat. but it is always a good exercise to go to the source code to find out how things are actually done.http://stackoverflow.com/questions/1741646/how-do-i-do-a-sql-between-where-the-date-and-time-are-stored-seperatly-as-integer/1742145#1742145Comment by Ron Tuffin on How do I do a SQL BETWEEN where the date and time are stored seperatly as integers.Ron Tuffin2009-11-17T07:27:47Z2009-11-17T07:27:47Z
I'm Accepting this because it will use indexes. But I actually used Andomar's 'trick' cause the piece of code I am currently working with is a once off throw away thing and performance is not an issue, it's faster to type (if you use Joel's version) and I had already released it before I saw this answer :)http://stackoverflow.com/questions/1665834/how-can-i-initialize-a-string-array-with-length-0-in-javaComment by Ron Tuffin on How can I initialize a String array with length 0 in Java?Ron Tuffin2009-11-03T07:57:14Z2009-11-03T07:57:14ZI just realized this is a stupid question :( As these arrays are initialized exactly the same way as any other array just with a size 0. Shows how often I initialize arrays nowadays. I'll leave the question (not delete it) cause someday someone else might be just as stupid as I was just now :)http://stackoverflow.com/questions/1629042/what-are-the-minimum-requirements-for-writing-a-java-client-for-mqseries/1629334#1629334Comment by Ron Tuffin on What are the minimum requirements for writing a Java client for MQSeries?Ron Tuffin2009-10-27T08:03:24Z2009-10-27T08:03:24ZYour link seems to be broken.http://stackoverflow.com/questions/1572708/is-conversion-to-string-using-int-value-bad-practice/1572749#1572749Comment by Ron Tuffin on Is conversion to String using ("" + <int value>) bad practice?Ron Tuffin2009-10-15T14:52:10Z2009-10-15T14:52:10ZThanks Kip. In my haste to beat Skeet, I mistyped it. fixed.http://stackoverflow.com/questions/1205995/what-is-the-list-of-valid-suppresswarnings-warning-names-in-java/1206052#1206052Comment by Ron Tuffin on What is the list of valid @SuppressWarnings warning names in Java?Ron Tuffin2009-08-07T06:16:49Z2009-08-07T06:16:49ZThe Eclipse list here looks to compiler flags and not SuppressWarning annotations (check the last part of the doc you linked).http://stackoverflow.com/questions/1239759/transact-sql-case-over-a-variable-length-inputexpressionComment by Ron Tuffin on Transact SQL CASE over a variable length input_expression Ron Tuffin2009-08-07T06:09:29Z2009-08-07T06:09:29ZThe answer almost makes my question look silly, can't believe I never saw this one. Thanks.http://stackoverflow.com/questions/1239759/transact-sql-case-over-a-variable-length-inputexpression/1239785#1239785Comment by Ron Tuffin on Transact SQL CASE over a variable length input_expression Ron Tuffin2009-08-07T06:03:16Z2009-08-07T06:03:16ZIt would obviously be a better solution to store the card type in the table. But like most of us I am sure you have had to work with legacy systems that everyone else is to scared to modify. If this report was going to be run more often I would fight harder for the better solution.http://stackoverflow.com/questions/1205995/what-is-the-list-of-valid-suppresswarnings-warning-names-in-javaComment by Ron Tuffin on What is the list of valid @SuppressWarnings warning names in Java?Ron Tuffin2009-07-30T11:34:02Z2009-07-30T11:34:02Z@mP I was giving someone else a chance to answer.http://stackoverflow.com/questions/1205995/what-is-the-list-of-valid-suppresswarnings-warning-names-in-javaComment by Ron Tuffin on What is the list of valid @SuppressWarnings warning names in Java?Ron Tuffin2009-07-30T11:26:04Z2009-07-30T11:26:04ZI found the answer via google but thought I would import the answer and question into Stack Overflowhttp://stackoverflow.com/questions/1176837/sql-to-determine-distinct-periods-of-sequential-days-of-accessComment by Ron Tuffin on SQL to determine distinct periods of sequential days of access?Ron Tuffin2009-07-24T14:19:45Z2009-07-24T14:19:45ZI'll edit the question but using your example that would be 3 distinct 4 day periods.http://stackoverflow.com/questions/1136035/can-one-automaticaly-create-javadoc-tags-for-an-entire-eclipse-project/1136073#1136073Comment by Ron Tuffin on Can one automaticaly create javadoc tags for an entire Eclipse project?Ron Tuffin2009-07-16T08:19:05Z2009-07-16T08:19:05ZThis looks like exactly what I am looking for. Downloading now.http://stackoverflow.com/questions/1136035/can-one-automaticaly-create-javadoc-tags-for-an-entire-eclipse-project/1136079#1136079Comment by Ron Tuffin on Can one automaticaly create javadoc tags for an entire Eclipse project?Ron Tuffin2009-07-16T08:16:11Z2009-07-16T08:16:11ZThe idea would be to create the tags that I can then populate with the requisite comments. I agree that empty javadoc comments are worse than useless.http://stackoverflow.com/questions/1127704/getting-maven-to-start-jetty-tapestry-tutorial/1134750#1134750Comment by Ron Tuffin on Getting maven to start jetty (Tapestry Tutorial)Ron Tuffin2009-07-16T06:14:43Z2009-07-16T06:14:43ZThanks Brain. I will check this one out as well. While @xorza's answer does indeed work, it does not actualy solve the problem.