1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 <2015> 2016 2017 2018 2019 2020 2021 2022 2023 2024 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 <2015> 2016 2017 2018 2019 2020 2021 2022 2023 2024 |
<== Date ==> | <== Thread ==> |
---|
Subject: | Re: Can't start CSS RDB archiver |
From: | "Lang, Keenan C." <[email protected]> |
To: | "[email protected]" <[email protected]> |
Cc: | "[email protected]" <[email protected]> |
Date: | Wed, 7 Jan 2015 16:45:43 +0000 |
>The start() methods are the same in my version and the one in github.
>Lines 115-117 are: > thread = new Thread(this, "WriteThread"); > output.println("time to start: "+ currentData()); > thread.start(); >I guess that the error is in the new Thread line because 116 line is >composed of standard library functions (as far as my poor java knowledge >helps). >Am i correct or shuld I look if the currentData() is not working fine? If currentData or the Thread constructor were the issue you would see the method calls in the unwinding of the stack. You have a NullPointerException which means you are trying to access member data of something that was never given a value. In this case, the only possible culprit is 'output'. Try to find where the variable 'output' is instantiated in the code. |